-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
{
"name": "meshblu-core-protocol-adapter-socket.io",
"version": "9.2.7",
"description": "Meshblu server for socket.io v1",
"main": "index.js",
"scripts": {
"start": "node command.js",
"test": "mocha",
"coverage": "nyc npm test",
"mocha:json": "mocha --reporter json > coverage/mocha.json",
"test:watch": "mocha -w -R mocha-multi --reporter-options spec=-,mocha-osx-reporter=-"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octoblu/meshblu-server-socket.io-v1.git"
},
"keywords": [],
"author": "Octoblu, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/octoblu/meshblu-server-socket.io-v1/issues"
},
"homepage": "https://github.com/octoblu/meshblu-server-socket.io-v1#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-subset": "^1.3.0",
"coffee-script": "^1.11.1",
"env-test": "^1.0.0",
"meshblu": "^1.33.0",
"mocha": "^3.3.0",
"mocha-multi": "^0.11.0",
"mocha-osx-reporter": "^0.1.2",
"nyc": "^10.3.2",
"request": "^2.65.0",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"uuid": "^3.0.1"
},
"dependencies": {
"@octoblu/redis-ns": "^1.3.1",
"async": "^2.4.0",
"ioredis": "^2.4.0",
"job-logger": "^4.3.1",
"lodash": "^4.6.1",
"meshblu-core-job-manager": "^11.2.1",
"meshblu-core-manager-messenger": "^2.3.3",
"meshblu-core-rate-limit-checker": "^1.0.0",
"meshblu-uuid-alias-resolver": "^1.0.1",
"socket.io": "^1.7.4"
},
"optionalDependencies": {
"hiredis": "^0.5.0"
},
"nyc": {
"cache": true,
"reporter": [
"text-summary",
"lcov",
"json"
],
"extension": [
".coffee"
]
}
}