-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"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"
},
"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.16.0",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/test-runner": "0.19.0",
"@web/test-runner-commands": "0.9.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"sinon": "19.0.2",
"stylelint": "16.12.0",
"stylelint-config-standard": "36.0.1"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint",
"*.css": "stylelint"
}
}