forked from mikaelvesavuori/figmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "figmagic",
"version": "4.5.6",
"description": "Figmagic is the missing piece between DevOps and design: Generate design tokens, export graphics, and extract design token-driven React components from your Figma documents.",
"homepage": "https://www.figmagic.com",
"repository": {
"type": "git",
"url": "https://github.com/mikaelvesavuori/figmagic.git"
},
"author": "Mikael Vesavuori",
"keywords": [
"figma",
"figma-api",
"tokens",
"ux",
"design-tokens",
"design-system",
"design-systems",
"design-specs"
],
"license": "MIT",
"bin": {
"figmagic": "build/index.js"
},
"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"
},
{
"name": "mykhailoInnovecs",
"url": "https://github.com/mykhailoInnovecs"
},
{
"name": "opauloh",
"url": "https://github.com/opauloh"
},
{
"name": "peeja",
"url": "https://github.com/Peeja"
},
{
"name": "Ishmam156",
"url": "https://github.com/Ishmam156"
},
{
"name": "smmccabe",
"url": "https://github.com/smmccabe"
},
{
"name": "mitchdotdeveloper",
"url": "https://github.com/mitchdotdeveloper"
}
],
"files": [
"build/index.js",
"build/index.js.LICENSE.txt",
"templates/"
],
"scripts": {
"figmagic": "node build/index.js",
"clean": "rm -rf .figmagic-trash/",
"build": "rm -rf build && npx webpack",
"test": "npx jest __tests__ --collectCoverage",
"test:watch": "npx jest --clearCache && jest __tests__ --collectCoverage --watch",
"test:silent": "npx jest --reporters jest-silent-reporter --collectCoverage=false",
"test:types": "npx type-coverage --strict --at-least 97.5",
"lint": "npx eslint './bin/**/*.ts' --quiet --fix",
"docs": "npm run docs:typedoc && npx arkit",
"docs:typedoc": "npx typedoc --entryPoints bin --entryPointStrategy expand --exclude '**/*+(test).ts' --externalPattern 'node_modules/**/*' --excludeExternals --out typedoc-docs",
"licenses": "npx license-compliance --direct --allow 'MIT;ISC;0BSD;BSD-2-Clause;BSD-3-Clause;Apache-2.0;Unlicense;CC0-1.0'",
"licenses:checker": "npx license-compatibility-checker",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7",
"@babel/preset-env": "7",
"@babel/preset-typescript": "7",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"arkit": "1",
"babel-loader": "8",
"eslint": "8",
"eslint-config-prettier": "8",
"eslint-plugin-prettier": "4",
"husky": "8",
"jest": "29",
"jest-silent-reporter": "0",
"license-compatibility-checker": "latest",
"license-compliance": "latest",
"msw": "latest",
"prettier": "latest",
"pretty-quick": "latest",
"trash": "7",
"ts-jest": "29",
"ts-loader": "9",
"type-coverage": "2",
"typedoc": "latest",
"typescript": "4",
"webpack": "5",
"webpack-cli": "4",
"webpack-shebang-plugin": "1"
}
}