forked from mikaelvesavuori/figmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2 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
{
"name": "figmagic",
"description": "Generate design tokens, export graphics, and extract design token-driven React components from your Figma documents. Inspired by Salesforce Theo.",
"keywords": [
"figma",
"figma api",
"design tokens",
"tokens",
"design system",
"salesforce theo"
],
"homepage": "https://www.figmagic.com",
"repository": {
"type": "git",
"url": "https://github.com/mikaelvesavuori/figmagic.git"
},
"version": "4.0.15",
"author": "Mikael Vesavuori",
"contributors": [
{
"name": "Victor",
"url": "https://github.com/vspedr"
},
{
"name": "Zack Brown",
"url": "https://github.com/zackbrown"
},
{
"name": "mike-lvov",
"url": "https://github.com/mike-lvov"
},
{
"name": "flo-sch",
"url": "https://github.com/flo-sch"
},
{
"name": "Stanko",
"url": "https://github.com/Stanko"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@types/jest": "26.0.21",
"@types/node": "^14.14.35",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"jest": "26.6.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"snyk": "1.505.0",
"ts-jest": "26.5.4",
"typescript": "4.2.3"
},
"dependencies": {
"dotenv": "8.2.0",
"figmagic": "^4.0.14",
"node-fetch": "2.6.1",
"trash": "7.1.1",
"tslib": "^2.1.0"
},
"bin": {
"figmagic": "build/index.js"
},
"scripts": {
"figmagic": "node build/index.js",
"build": "rm -rf build && tsc",
"test": "jest __tests__ --collectCoverage",
"lint": "eslint './bin/**/*.ts' --quiet --fix",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}