-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 KB
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
{
"name": "xbmq",
"description": "XBee to MQTT gateway",
"version": "2.1.3",
"bin": {
"xbmq": "xbmq.js"
},
"keywords": [
"xbee",
"mqtt",
"iot"
],
"author": {
"name": "Andrew Bythell",
"email": "abythell@ieee.org",
"url": "http://angryelectron.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angryelectron/xbmq-js.git"
},
"license": "GPL-3.0",
"dependencies": {
"mqtt": "^5.5.2",
"nconf": "^0.12.0",
"serialport": "^13.0.0",
"winston": "^3.3.3",
"xbee-api": "^0.6.0"
},
"scripts": {
"start": "node xbmq.js",
"test": "jest",
"pretest": "standard",
"jsdoc": "jsdoc lib -r -R README.md -d doc",
"doc": "npm run jsdoc && open-cli doc/index.html",
"preversion": "npm test && npm run jsdoc",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"jest": "^29.7.0",
"jsdoc": "^4.0.0",
"open-cli": "^8.0.0",
"standard": "^17.0.0"
},
"jest": {
"testMatch": [
"**/test/**.js"
]
}
}