-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
37 lines (37 loc) · 1.31 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
{
"name": "design-tokens-community-group",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/design-tokens/community-group.git",
"author": "DTCG and Contributors",
"license": "SEE LICENSE.md",
"private": true,
"devDependencies": {
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"live-server": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"respec": "^35.1.1"
},
"scripts": {
"lint": "prettier '**/*.{md,yml,json,html}' --check --config ./.prettierrc.json",
"validate:index": "respec --localhost technical-reports/index.html --haltonerror --haltonwarn",
"validate:format": "respec --localhost technical-reports/format/index.html --haltonerror --haltonwarn",
"validate": "npm run validate:index && npm run validate:format",
"dev": "live-server --cors technical-reports",
"prepare": "husky",
"build": "npm-run-all \"build:*\"",
"build:index": "respec technical-reports/index.html technical-reports/index.html --localhost --disable-sandbox",
"build:format": "respec technical-reports/format/index.html technical-reports/format/index.html --localhost --disable-sandbox"
},
"lint-staged": {
"*.{md,yml,json,html}": "prettier --write"
},
"overrides": {
"colors": "1.4.0"
},
"resolutions": {
"colors": "1.4.0"
}
}