-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (41 loc) · 1.32 KB
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
{
"name": "nbind-kinect2",
"version": "0.2.0",
"description": "Node bindings to kinect 2 that follow the recently-introduced webAR standard",
"license": "MIT",
"author": "John Williams",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"autogypi": "autogypi",
"node-gyp": "node-gyp",
"ndts": "ndts",
"emcc-path": "emcc-path",
"copyasm": "copyasm",
"watch:tsc": "tsc --watch",
"build:tsc": "tsc",
"build:autogypi": "autogypi -p nbind",
"build:native": "eval 'node-gyp rebuild && copyasm . dist'",
"build:typings": "ndts dist > dist/main.d.ts",
"build:electron": "cross-env HOME=./tmp/.electron-gyp node-gyp rebuild--target=1.4.13 --dist-url=https://atom.io/download/electron",
"build": "eval 'npm run build:native -s && npm run build:tsc -s && npm run build:typings -s'",
"start": "node dist/main.js",
"start:tsc": "eval 'tsc && node dist/main.js'",
"install": "npm run build:autogypi -s",
"postinstall": "npm run build:native -s",
"prepare": "npm run build -s"
},
"dependencies": {
"autogypi": "^0.2.2",
"nbind": "^0.3.6",
"node-gyp": "^3.3.1"
},
"devDependencies": {
"@types/node": "^7.0.22",
"cross-env": "^5.0.1",
"typescript": "^2.1.4"
},
"optionalDependencies": {
"electron-prebuilt": "^1.4.13"
}
}