forked from adobecom/milo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.49 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@adobecom/milo",
"private": true,
"version": "1.0.0",
"description": "Website foundation technology.",
"scripts": {
"test": "wtr --config ./web-test-runner.config.mjs \"./test/**/*.test.(js|html)\" --node-resolve --port=2000 --coverage --concurrent-browsers 4",
"test:watch": "npm test -- --watch",
"test:file": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage",
"test:file:watch": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage --watch",
"libs": "aem up --port=6456",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:js:nibble": "eslint-nibble .",
"lint:css": "stylelint 'blocks/**/*.css' 'styles/*.css'",
"build:htm-preact": "microbundle ./build/htm-preact.js -o ./libs/deps/htm-preact.js -f modern --no-sourcemap --target web; mv ./libs/deps/htm-preact.modern.mjs ./libs/deps/htm-preact.js",
"build:preact-debug": "microbundle ./build/htm-preact-debug.js -o ./libs/deps/htm-preact-debug.js -f modern --no-sourcemap --target web; mv ./libs/deps/htm-preact-debug.modern.mjs ./libs/deps/htm-preact-debug.js",
"build:gnav-profile": "microbundle ./libs/blocks/global-navigation/blocks/profile/profile-wrapper.js -o ./build/profile-wrapper-build.js -f umd --external none --no-sourcemap --target web; mv ./build/profile-wrapper-build.umd.js ./build/profile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobecom/milo.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobecom/milo/issues"
},
"homepage": "https://github.com/adobecom/milo#readme",
"dependencies": {
"@preact/signals": "1.0.4",
"htm": "^3.1.1",
"preact": "^10.11.0"
},
"devDependencies": {
"@babel/core": "7.17.7",
"@babel/eslint-parser": "7.17.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/dev-server-import-maps": "^0.0.6",
"@web/test-runner": "0.13.27",
"@web/test-runner-commands": "0.6.1",
"chai": "4.3.6",
"eslint": "8.11.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-nibble": "^8.1.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-ecmalist": "^1.0.8",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-react-hooks": "^4.6.0",
"microbundle": "0.15.1",
"sinon": "13.0.1",
"stylelint": "14.6.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0"
}
}