-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "node-ld",
"version": "1.1.3",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node_modules/.bin/watchify browser --standalone ld -t [ babelify --presets [ es2015 ] ] -o 'tee build/browser/node-ld.js | node_modules/.bin/uglifyjs > build/browser/node-ld.min.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^1.5.0",
"debug": "^2.2.0",
"node-hid": "^0.5.1",
"restify": "^4.1.0",
"serialport": "^2.0.2",
"usb": "^1.1.0"
},
"devDependencies": {
"babel": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"vinyl-transform": "^1.0.0",
"watchify": "^3.7.0"
},
"browser": {
"node.js": "browser.js",
"index.js": "browser.js",
"debug": "debug/browser",
"node-hid": false,
"usb": false,
"../transports/hid.js": false,
"../transports/libusb.js": false
}
}