-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "figma-transformer",
"version": "2.1.0",
"license": "MIT",
"keywords": [
"figma",
"design",
"process",
"transformer",
"api"
],
"author": "Bernardo Raposo <hi@bernardoraposo.com> (https://github.com/braposo)",
"repository": {
"type": "git",
"url": "https://github.com/braposo/figma-transformer.git"
},
"homepage": "https://github.com/braposo/figma-transformer#readme",
"main": "dist/index.js",
"module": "dist/figma-transformer.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src",
"prepublishOnly": "yarn validate",
"validate": "yarn test --coverage && yarn lint --fix && yarn build && bundlesize"
},
"sideEffects": false,
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"devDependencies": {
"@types/jest": "^26.0.14",
"bundlesize": "^0.18.0",
"figma-js": "^1.13.0",
"husky": "^4.3.0",
"tsdx": "^0.14.0",
"typescript": "3.9.7"
},
"dependencies": {},
"bundlesize": [
{
"path": "./dist/figma-transformer.cjs.production.min.js",
"maxSize": "1.1 kB"
}
]
}