forked from davixyz/design-tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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": "^3.0.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^3.0.0",
"fancy-log": "^1.3.2",
"fs-extra": "^7.0.0",
"husky": "^1.1.1",
"jest": "^23.6.0",
"lodash": "^4.17.10",
"pdfkit": "^0.8.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"style-dictionary": "^2.1.0",
"svg-to-pdfkit": "^0.1.7",
"svgo": "^1.1.1",
"svgsus": "^0.23.4",
"tinycolor2": "^1.4.1",
"yargs": "^12.0.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run validate"
}
}
}