-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1021 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
35
36
37
38
39
40
41
42
43
44
{
"name": "nano-mqtt",
"version": "1.2.0",
"description": "Nano-sized MQTT client intended but not limited to be used on Espruino",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha",
"posttest": "npm run coverage",
"coverage": "nyc report --reporter=lcov",
"lint": "eslint -v && eslint ."
},
"author": "David Csirmaz",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:csimi/nano-mqtt.git"
},
"devDependencies": {
"@csimi/eslint-config": "^3.0.0",
"buffer-to-uint8array": "^1.1.0",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"eslint": "^7.32.0",
"mocha": "^6.2.2",
"mqtt-packet": "^6.3.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.16"
},
"files": [
"index.js",
"lib/**/*.js"
],
"keywords": [
"mqtt",
"client",
"espruino",
"tcp",
"udp"
]
}