-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "meshblu-util",
"version": "7.0.0",
"description": "Utils for managing Meshblu devices",
"main": "index.js",
"bin": {
"meshblu-util": "./command.js",
"meshblu-util-subscription-create": "./command-subscription-create.js",
"meshblu-util-subscription-delete": "./command-subscription-delete.js",
"meshblu-util-subscription-list": "./command-subscription-list.js",
"meshblu-util-create-hook": "./command-create-hook.js",
"meshblu-util-generate-token": "./command-generate-token.js",
"meshblu-util-revoke-token": "./command-revoke-token.js",
"meshblu-util-get": "./command-get.js",
"meshblu-util-firehose": "./command-firehose.js",
"meshblu-util-keygen": "./command-keygen.js",
"meshblu-util-register": "./command-register.js",
"meshblu-util-subscribe": "./command-subscribe.js",
"meshblu-util-message": "./command-message.js",
"meshblu-util-search": "./command-search.js",
"meshblu-util-update": "./command-update.js",
"meshblu-util-unregister": "./command-unregister.js",
"meshblu-util-online": "./command-online.js",
"meshblu-util-server-check": "./command-server-check.js",
"meshblu-util-claim": "./command-claim.js"
},
"scripts": {
"start": "node command.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/octoblu/meshblu-util.git"
},
"keywords": [
"meshblu",
"octoblu",
"gateblu"
],
"author": "Octoblu Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/octoblu/meshblu-util/issues"
},
"homepage": "https://github.com/octoblu/meshblu-util",
"devDependencies": {
"chai": "^4.1.0",
"mocha": "^3.5.0",
"sinon": "^3.0.0",
"sinon-chai": "^2.12.0"
},
"dependencies": {
"coffee-script": "^1.12.7",
"colors": "^1.0.3",
"commander": "^2.11.0",
"debug": "^2.6.8",
"gateblu-shadower": "^1.0.1",
"lodash": "^4.17.4",
"meshblu-config": "^8.0.1",
"meshblu-firehose-socket.io": "^4.0.2",
"meshblu-http": "^10.0.6",
"meshblu-json-schema-resolver": "^3.0.0",
"meshblu-websocket": "^4.0.0",
"meshblu-xmpp": "^1.4.4",
"moment": "^2.18.1",
"open": "0.0.5",
"pretty-bytes": "^4.0.2"
}
}