forked from mikaelvesavuori/figmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.97 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
{
"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.8",
"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.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/jest": "26.0.20",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.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.439.1",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"dependencies": {
"dotenv": "8.2.0",
"node-fetch": "2.6.1",
"trash": "7.0.0",
"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
}