-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
55
{
"name": "kinect2",
"version": "0.1.5",
"description": "Nodejs library to access the kinect 2 data from the official MS SDK",
"main": "./lib/kinect2.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"buildall": "node tools/buildall.js",
"buildall:publish": "node tools/buildall.js --publish",
"build:electron": "node tools/electronbuild.js",
"echo-node-version-info": "node tools/echo-node-version-info.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wouterverweirder/kinect2.git"
},
"os": [
"win32"
],
"binary": {
"module_name": "kinect2",
"module_path": "./build/{module_name}/v{version}/{configuration}/{node_abi}-{platform}-{arch}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/wouterverweirder/kinect2/releases/download/",
"remote_path": "{version}"
},
"keywords": [
"kinect2",
"sdk"
],
"author": "Wouter Verweirder",
"license": "MIT",
"bugs": {
"url": "https://github.com/wouterverweirder/kinect2/issues"
},
"homepage": "https://github.com/wouterverweirder/kinect2",
"dependencies": {
"atob": "^2.0.3",
"express": "~4.9.5",
"johnny-five": "0.10.5",
"nan": "^2.3.2",
"node-pre-gyp": "^0.6.11",
"socket.io": "~1.1.0",
"synchronize": "2.0.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"async": "^1.4.2",
"jsdom": "^6.5.1",
"minimist": "^1.2.0",
"node-pre-gyp-github": "^1.3.1"
}
}