-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 821 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 821 Bytes
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
{
"name": "node-sketch-bridge",
"version": "0.2.0",
"description": "Exposes the macOS APIs needed for generating Sketch files",
"main": "index.js",
"files": [
"**/*.{m,gyp}",
"prebuilds"
],
"dependencies": {
"node-gyp-build": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"jest": "^24.9.0",
"node-addon-api": "^1.7.1",
"prebuildify": "^2.6.0"
},
"scripts": {
"install": "node-gyp-build",
"prepublishOnly": "prebuildify --napi",
"rebuild": "cd build && make",
"clean": "rm -rf build",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Devin Abbott (@dabbott)",
"license": "MIT",
"repository": {
"url": "https://github.com/Lona/node-sketch-bridge"
},
"homepage": "https://github.com/Lona/node-sketch-bridge"
}