-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 948 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
45
46
{
"name": "homie-device",
"description": "Homie Device for NodeJS",
"version": "3.0.1",
"author": {
"name": "Loren West",
"email": "[email protected]",
"url": "https://github.com/lorenwest"
},
"main": "./lib/homieDevice",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/microclimates/homie-device.git"
},
"keywords": [
"Homie",
"MQTT",
"IoT",
"RaspberryPi",
"Mosquitto",
"HiveMQ",
"WebSphereMQ",
"ActiveMQ",
"RabbitMQ"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"chai": "^4.1.1",
"mocha": "^3.5.0",
"nyc": "^14.0.0",
"proxyquire": "^1.8.0",
"watch": "^1.0.2"
},
"dependencies": {
"lodash": "^4.13.1",
"mqtt": "^2.11.0"
},
"scripts": {
"watch": "watch 'npm run test' .",
"test": "mocha",
"coverage": "nyc --reporter=text mocha"
}
}