-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 810 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cns-broker",
"version": "0.1.9",
"description": "CNS Broker",
"author": "Padi, Inc",
"license": "ISC",
"main": "index.js",
"scripts": {
"production": "node index --production",
"staging": "node index --staging",
"start": "node index --staging --verbose",
"push": "git checkout staging && npm version patch --git-tag-version false && git add . && git commit -m \"Commit\" && git push origin staging",
"deploy": "git checkout staging && npm version minor --git-tag-version false && git checkout master && git merge staging && git push origin master && git checkout staging"
},
"dependencies": {
"aedes": "^0.46.0",
"aedes-server-factory": "^0.2.1",
"colors": "^1.4.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"mqtt": "^4.3.7"
}
}