-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 727 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 727 Bytes
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
{
"name": "ambiens-mqtt",
"version": "1.0.0",
"description": "mqtt server + api",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon index",
"test": ". ./scripts/run-tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lotti/node-mqtt.git"
},
"author": "node",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"mosca": "^2.2.0",
"mqtt": "^2.0.1",
"pug": "^2.0.0-beta6"
},
"devDependencies": {
"mocha": "^3.1.2",
"request": "^2.78.0",
"should": "^11.1.1",
"supertest": "^2.0.1"
},
"engines": {
"node": "6.9.1",
"npm": "3.10.8"
}
}