forked from momentum-design/tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.83 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
{
"dependencies": {},
"name": "@momentum-ui/design-tokens",
"description": "See [documentation on Confluence](https://confluence-eng-gpk2.cisco.com/conf/display/~pauwitty/Token+proposal)",
"version": "0.0.27",
"main": "./dist/index.css",
"devDependencies": {
"args-parser": "^1.2.0",
"camelcase": "^6.2.0",
"color-parse": "^1.4.2",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"lodash.merge": "^4.6.2",
"rimraf": "^3.0.2"
},
"scripts": {
"build:clean": "rimraf ./dist",
"build:web": "npm run build:clean && node theme_generator.js --target=targets/web.json",
"build:windows": "npm run build:clean && node theme_generator.js --target=targets/qt.json && node theme_generator.js --target=targets/windows-high-contrast.json",
"build:linux": "npm run build:clean && node theme_generator.js --target=targets/qt.json",
"build:macos": "npm run build:clean && node theme_generator.js --target=targets/macos.json",
"build:ios": "npm run build:clean && node theme_generator.js --target=targets/ios.json",
"build:android": "npm run build:clean && node theme_generator.js --target=targets/android.json",
"publishNpm": "./publishNpm.sh",
"test": "npm run build:web && npm run build:windows && npm run build:macos && npm run build:ios && npm run build:android",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/momentum-design/tokens.git"
},
"author": "Cisco's Webex",
"license": "MIT",
"bugs": {
"url": "https://github.com/momentum-design/tokens/issues"
},
"homepage": "https://github.com/momentum-design/tokens#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/**"
],
"lint-staged": {
"**/*": "npx prettier --write --ignore-unknown"
}
}