-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "design-tokens",
"version": "1.0.0",
"description": "Design System Tokens",
"files": [
"build/web"
],
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"build": "npm run validate && node index.js",
"build:web": "node index.js --platform=web",
"build:ios": "node index.js --platform=ios",
"build:android": "node index.js --platform=android",
"lint": "eslint src/*.js",
"validate": "npm run lint && npm test",
"prepublishOnly": "npm run validate && npm run build:web"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"del": "^5.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"fancy-log": "^1.3.2",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lodash": "^4.17.21",
"pdfkit": "^0.11.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.2",
"style-dictionary": "^2.10.1",
"svg-to-pdfkit": "^0.1.8",
"svg2vectordrawable": "^2.6.26",
"svgo": "^1.3.2",
"tinycolor2": "^1.4.1",
"yargs": "^16.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run validate"
}
}
}