forked from momentum-design/tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 3.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@momentum-ui/design-tokens",
"description": "See [documentation on Confluence](https://confluence-eng-gpk2.cisco.com/conf/display/~pauwitty/Token+proposal)",
"version": "0.0.63",
"main": "./dist/index.css",
"devDependencies": {
"args-parser": "^1.2.0",
"camelcase": "^6.2.0",
"color-parse": "^1.4.2",
"husky": "^7.0.1",
"jest": "^29.1.2",
"lint-staged": "^11.1.2",
"lodash": "^4.17.21",
"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.json && node theme_generator.js --target=targets/web.json",
"build:web:json": "npm run build:clean && node theme_generator.js --target=targets/web-json.json",
"build:web:css": "npm run build:clean && node theme_generator.js --target=targets/web.json",
"build:web:docs": "npm run build:clean && node theme_generator.js --target=targets/web-json.json --writeDocs",
"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",
"scripts": "node ./scripts/index.js",
"scripts:update": "node ./scripts/index.js --command=update --format=automated",
"test": "npm run test:scripts && npm run build:web && npm run build:windows && npm run build:macos && npm run build:ios && npm run build:android",
"test:macos:dist": "jest dist-snapshots.test.js",
"test:macos": "npm run build:macos && npm run test:macos:dist",
"test:scripts": "jest ./scripts",
"test:macos:dist:dark": "jest tests/mac/dark/**",
"test:macos:dist:light": "jest tests/mac/light/**",
"test:macos:dist": "npm run test:macos:dist:dark && npm run test:macos:dist:light",
"test:macos": "npm run build:macos && npm run test:macos:dist",
"test:windows:dist:dark": "jest tests/win/dark/**",
"test:windows:dist:light": "jest tests/win/light/**",
"test:windows:dist:hc": "jest tests/win/momentumSystemHighContrast.test.js",
"test:windows:dist": "npm run test:windows:dist:dark && npm run test:windows:dist:light && npm run test:windows:dist:hc",
"test:windows": "npm run build:windows && npm run test:windows:dist",
"update:macos": "node syncFromNewRepo.js && npm run test:macos",
"update:windows": "node syncFromNewRepo.js && npm run test:windows",
"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"
},
"dependencies": {
"@momentum-design/tokens": "0.0.52",
"momentum-abstract": "^1.0.28"
}
}