-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "figma-extract-token",
"version": "0.2.14",
"description": "Compose and Extract design tokens from Figma",
"author": "robson.mathias<[email protected]>",
"main": "./dist/index.js",
"bin": {
"figma-extract-token": "./bin/index.js"
},
"preferGlobal": true,
"scripts": {
"build": "run-s build:**",
"build:clean": "rimraf dist",
"build:source": "tsc",
"dev": "tsc -w",
"test": "kcd-scripts test --env=jsdom",
"lint": "kcd-scripts lint",
"format": "kcd-scripts format",
"precommit": "lint-staged",
"latest": "node ./scripts/latest.js",
"release": "node ./scripts/release.js",
"mock": "FIGMA_TOKEN=$FIGMA_TOKEN node ./scripts/generate-mock.js"
},
"peerDependencies": {
"json-diff": "^0.5.4",
"lodash": "^4.17.20",
"style-dictionary": "^2.10.2"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@types/execa": "^2.0.0",
"@types/json-diff": "^0.5.1",
"@types/listr": "^0.14.2",
"@types/lodash": "^4.14.168",
"axios": "^0.21.1",
"execa": "^5.0.0",
"json-diff": "^0.5.4",
"listr": "^0.14.3",
"lodash": "^4.17.21",
"style-dictionary": "^2.10.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.5.5",
"@testing-library/jest-dom": "^4.1.2",
"@types/jest": "^24.0.19",
"@types/jest-when": "^2.7.2",
"@types/node": "^14.14.25",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint-plugin-prettier": "^3.1.3",
"extract-pr-titles": "^1.1.0",
"generate-changelog": "^1.8.0",
"husky": "^5.1.3",
"jest": "^24.9.0",
"jest-when": "^3.1.0",
"kcd-scripts": "^1.12.0",
"lint-staged": "^9.2.5",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4",
"yargs": "^16.2.0"
},
"files": [
"dist",
"bin"
],
"license": "UNLICENSED",
"engines": {
"node": ">=10.16.0"
}
}