-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "@lwmqn/qnode",
"version": "0.10.0",
"description": "Client node of LwM2M-like Lightweight Message Queuing Network (LwMQN).",
"main": "index.js",
"scripts": {
"lint": "standard --env mocha | snazzy",
"lint-fix": "standard --env mocha --fix | snazzy",
"test": "nyc mocha --reporter=spec --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"html-coverage": "npx nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "https://github.com/lwmqn/qnode.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lwmqn/qnode/issues"
},
"homepage": "https://github.com/lwmqn/qnode",
"dependencies": {
"@lwmqn/util": "^0.6.0",
"busyman": "^0.3.0",
"debug": "^4.1.1",
"mqtt": "^3.0.0",
"network": "^0.4.1"
},
"devDependencies": {
"@lwmqn/smartobject": "^1.6.0",
"coveralls": "^3.0.9",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^7.5.0",
"snazzy": "^8.0.0",
"standard": "^14.0.0"
}
}