-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "figma-export",
"version": "1.0.0",
"description": "Figma PDF Export Command-Line Interface",
"license": "MIT",
"keywords": [
"Figma"
],
"main": "./dist/index.js",
"author": {
"name": "Shaun Becker",
"email": "smbecker@gmail.com"
},
"files": [
"dist/",
"bin/"
],
"engineStrict": true,
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc -p ./src",
"prepare": "npm run build",
"lint": "tslint --config tslint.json 'src/**/*.ts' --exclude '**/node_modules/**'",
"rebuild": "npm run clean && npm run build",
"start": "node bin/figma-export.js",
"prepublishOnly": "npm run rebuild"
},
"bin": {
"figma-export": "bin/figma-export.js"
},
"dependencies": {
"liftoff": "^2.5.0",
"pdfjs": "^2.3.2",
"request": "^2.88.0",
"v8flags": "^2.1.1",
"yargs": "^7.1.0"
},
"devDependencies": {
"@types/node": "^8.0.20",
"rimraf": "^2.7.1",
"tslint": "^5.20.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^2.9.2"
}
}