-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 969 Bytes
/
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
{
"name": "busb",
"version": "1.0.0-beta.2",
"description": "webusb and node-usb vendor. API for web and node.",
"keywords": [
"usb",
"webusb",
"libusb"
],
"license": "MIT",
"repository": "git://github.com/nodech/busb.git",
"homepage": "https://github.com/nodech/busb#readme",
"bugs": {
"url": "https://github.com/nodech/busb/issues"
},
"author": "Nodari Chkuaselidze <[email protected]>",
"main": "lib/busb.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint lib/ test/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js"
},
"browser": {
"./lib/busb": "./lib/busb-browser.js"
},
"dependencies": {
"loady": "git+https://github.com/chjj/loady#semver:~0.0.1",
"node-addon-api": "git+https://github.com/nodech/node-addon-api#semver:3.0.2"
},
"devDependencies": {
"bmocha": "git+https://github.com/bcoin-org/bmocha.git#semver:^2.1.2"
},
"gypfile": true
}