forked from amzn/style-dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "style-dictionary",
"version": "2.2.0",
"description": "Style once, use everywhere. A build system for creating cross-platform styles.",
"keywords": [
"style dictionary",
"style",
"dictionary",
"amazon",
"css",
"design",
"properties",
"tokens",
"sass",
"scss",
"iOS",
"Android",
"react",
"react native",
"style guide"
],
"main": "index.js",
"bin": {
"style-dictionary": "./bin/style-dictionary"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"bin",
"lib",
"example",
"index.js",
"LICENSE",
"NOTICE"
],
"scripts": {
"lint": "eslint index.js lib/**/*.js test/*.js test/**/*.js",
"test": "npm run lint && mocha --recursive -c",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- test/*.js test/**/*.js",
"preversion": "npm test",
"version": "node ./scripts/version.js && npm run generate-docs",
"generate-docs": "node ./scripts/generateDocs.js",
"serve-docs": "docsify serve docs -p 3000 -P 12345",
"install-cli": "npm install -g $(npm pack)"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"repository": {
"type": "git",
"url": "git://github.com/amzn/style-dictionary.git"
},
"author": "Amazon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/amzn/style-dictionary/issues"
},
"contributors": [
"Yuliya Baran <baranyu@amazon.com>",
"Charles Dorner <dornerc@amazon.com>",
"Dustin Boudreau <boudrd@amazon.com>",
"Danny Banks <djb@amazon.com>"
],
"homepage": "https://github.com/amzn/style-dictionary",
"dependencies": {
"commander": "^2.9.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.1",
"lodash": "^4.16.4",
"resolve-cwd": "^2.0.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"docsify": "^4.6.10",
"docsify-cli": "^4.2.1",
"eslint": "^4.19.1",
"husky": "^1.0.0-rc.8",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^4.0.1",
"less": "^3.0.1",
"mocha": "^5.2.0",
"node-sass": "^4.8.3"
}
}