-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "nkinect",
"version": "0.0.4",
"description": "Node kinect binding with libfreenect and libusb-1.0",
"keywords": [
"kinect",
"freenect",
"video",
"depth",
"binding",
"wrapper"
],
"engines": {
"node": ">=4.1.0"
},
"main": "index.js",
"bin": "bin/nkinect",
"browser": "browser.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubeniskov/nkinect.git",
"url_commit": "git+https://github.com/rubeniskov/nkinect/commit",
"url_tag": "git+https://github.com/rubeniskov/nkinect/releases/tag"
},
"author": {
"name": "Rubén López Gómez",
"email": "[email protected]",
"url": "https://twitter.com/Rubeniskov"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rubeniskov/nkinect/blob/master/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/rubeniskov/nkinect/issues"
},
"homepage": "http://rubeniskov.com/projects/nkinect",
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-class-constructor-call",
[
"transform-runtime",
{
"polyfill": true,
"regenerator": true,
"helpers": true
}
]
]
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"install": "node-gyp configure build",
"docs": "mkdir -p ./docs/ && documentation build src/index.js -f md -o ./docs/reference.md",
"build": "babel src/module --out-dir lib --copy-files",
"watch": "babel src/module --watch --out-dir lib --copy-files",
"bundle": "npm run build && npm pack",
"test": "./scripts/fakenect $(pwd)/session node ./node_modules/.bin/mocha --compilers js:babel-core/register -- test/specs.js"
},
"gypfile": true,
"dependencies": {
"babel-runtime": "^6.26.0",
"bindings": "^1.2.1",
"keypress": "^0.2.1",
"nan": "^2.6.2",
"readable-stream": "^2.3.3"
},
"bundleDependencies": [
"bindings",
"nan"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-constructor-call": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"documentation": "^5.2.1",
"mocha": "^3.5.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0"
}
}