forked from B3nnyL/figgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "figgo",
"version": "0.2.4",
"description": "A CLI tool make your design tokens stay up to date with your Figma design styleguide",
"main": "./dist/cli.js",
"bin": {
"figgo": "./dist/cli.js"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/B3nnyL/figgo.git"
},
"bugs": {
"url": "https://github.com/B3nnyL/figgo/issues"
},
"homepage": "https://github.com/B3nnyL/figgo",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"pre:test": "npm run lint",
"test": "NODE_ENV=test jest --verbose=false",
"pre:build": "npm run lint && npm run clean",
"build": "tsc",
"prod": "NODE_ENV=prod npm run build && npm link",
"start": "npm run build && node ./dist/cli.js",
"dev": "NODE_ENV=dev ts-node ./lib/cli.ts",
"clean": "rimraf ./dist"
},
"keywords": [
"Figma",
"UI",
"Utility"
],
"author": "Shuying Lin <ciao@sylin.me>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"enquirer": "^2.0.7",
"fs": "0.0.1-security",
"meow": "^6.1.1",
"node-fetch": "^2.3.0",
"os": "^0.1.1",
"path": "^0.12.7"
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/jest": "^23.3.9",
"@types/meow": "^5.0.0",
"@types/node": "^10.12.9",
"eslint": "^5.9.0",
"eslint-plugin-typescript": "^0.13.0",
"jest": "^25.5.4",
"ts-jest": "^25.4.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^21.0.1"
}
}