-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "helix-website",
"version": "1.0.0",
"description": "",
"main": "scripts.js",
"scripts": {
"test": "wtr \"./tests/**/*.test.js\" --node-resolve --port=2000 --coverage",
"test:watch": "npm test -- --watch",
"lint:js": "eslint .",
"lint:css": "stylelint 'blocks/**/*.css' 'styles/*.css'",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "eslint --fix --ext .js,.jsx . && npm run lint -- --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/helix-website.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-website/issues"
},
"homepage": "https://github.com/adobe/helix-website#readme",
"devDependencies": {
"@adobe/rum-distiller": "1.9.0",
"@babel/core": "7.18.0",
"@babel/eslint-parser": "7.17.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/test-runner": "0.13.28",
"@web/test-runner-commands": "0.6.1",
"eslint": "8.16.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.1",
"lint-staged": "12.4.2",
"sinon": "14.0.0",
"stylelint": "14.8.3",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint",
"*.css": "stylelint"
}
}