forked from jxnblk/figma-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"name": "@primer/figma-theme",
"version": "0.1.0",
"description": "Generate development-ready theme JSON files from Figma Styles",
"main": "./dist/index.js",
"bin": {
"figma-theme": "./dist/cli-boot.js"
},
"scripts": {
"prepublishOnly": "yarn build",
"prebuild": "rm -rf dist",
"build": "tsc && chmod +x ./dist/cli-boot.js",
"cli": "ts-node src/cli-boot.ts",
"test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
"test:fast": "yarn test -f '[slow]' -i",
"test:slow": "yarn test -f '[slow]'"
},
"keywords": [],
"author": "Michelle Tilley <michelle@michelletilley.net>",
"contributors": [
"Brent Jackson"
],
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"dist",
"tsconfig.json"
],
"types": "dist/index.d.ts",
"dependencies": {
"@types/chroma-js": "^2.0.0",
"@types/dedent": "^0.7.0",
"@types/lodash": "^4.14.156",
"@types/node": "^14.0.13",
"@types/request": "^2.48.5",
"chroma-js": "^2.1.0",
"commander": "^5.1.0",
"dedent": "^0.7.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"request": "^2.88.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/tmp": "^0.2.0",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"tmp": "^0.2.1",
"ts-mocha": "^7.0.0"
}
}