-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "pkgsite",
"license": "BSD-3-Clause",
"repository": {
"url": "https://go.googlesource.com/pkgsite"
},
"private": true,
"scripts": {
"license-check": "jsgl --local .",
"lint": "run-s --continue-on-error \"lint:* -- {1}\" -- ",
"lint:css": "stylelint **/*.css",
"lint:ts": "eslint 'static/**/*.ts'",
"test": "run-s --continue-on-error test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "jest static"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "20.19.40",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.6.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"js-green-licenses": "4.0.0",
"npm-run-all": "4.1.5",
"prettier": "3.8.3",
"stylelint": "17.11.0",
"stylelint-config-standard": "40.0.0",
"stylelint-order": "8.1.1",
"stylelint-prettier": "5.0.3",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"typescript-eslint": "8.59.2"
},
"engines": {
"node": ">=20.0.0"
}
}