-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "lona-imports-design-tools",
"version": "1.0.0",
"description": "",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:js && npm run build:types",
"build:watch": "npm run build:js -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"author": "Mathieu Dutour",
"license": "MIT",
"dependencies": {
"figma-js": "^1.8.3",
"sketch-file": "^0.2.0",
"xd-file": "^0.1.1",
"yargs": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@types/node": "^12.7.4",
"prettier": "^1.18.2",
"typescript": "^3.6.2"
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
}
}