-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "pxbee-fwup.js",
"version": "0.0.2",
"description": "Programmable XBee Application firmware updater OTW/OTA",
"main": "lib/fwup.js",
"scripts": {
"test": "mocha test/**/*spec.js",
"lint": "./node_modules/.bin/eslint lib/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exsilium/pxbee-fwup.js.git"
},
"keywords": [
"xbee"
],
"bin": {
"fwup": "bin/fwup"
},
"preferGlobal": "true",
"author": "Sten Feldman",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/exsilium/pxbee-fwup.js/issues"
},
"homepage": "https://github.com/exsilium/pxbee-fwup.js#readme",
"dependencies": {
"colors": "~1.1.2",
"commander": "~2.9.0",
"console-stamp": "^0.2.6",
"gauge": "~2.7.4",
"serialport": "~4.0.7",
"xbee-api": "~0.5.2",
"xmodem.js": "~0.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1"
}
}