-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "author-kit",
"version": "1.3.0",
"type": "module",
"description": "Powerfully simple experiences.",
"scripts": {
"lint:js": "eslint .",
"lint:css": "stylelint blocks/**/*.css styles/*.css",
"lint": "npm run lint:js && npm run lint:css",
"test": "wtr \"./test/**/*.test.(js|html)\" --node-resolve --port=2000 --coverage --concurrent-browsers 4",
"test:watch": "npm test -- --watch",
"test:file": "wtr --node-resolve --port=2000 --coverage",
"test:file:watch": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage --watch",
"build:lit": "esbuild --format=esm --minify ./deps/lit/src/index.js --bundle --outfile=./deps/lit/dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aemsites/author-kit.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/aemsites/author-kit/issues"
},
"homepage": "https://github.com/aemsites/author-kit#readme",
"devDependencies": {
"@adobe/eslint-config-helix": "^3.0.17",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/dev-server-import-maps": "^0.2.0",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "0.9.0",
"chai": "4.4.1",
"eslint": "^9.39.2",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.0.0",
"sinon": "^21.0.1",
"stylelint": "^17.1.0",
"stylelint-config-standard": "^40.0.0"
},
"dependencies": {
"esbuild": "^0.25.10",
"lit": "^3.3.1"
}
}