forked from bbc/node-radiovis-stomp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 KB
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
{
"name": "radiovis-stomp-server",
"version": "0.1.4",
"description": "STOMP server implementation for RadioVis",
"main": "./lib/radiovis-server.js",
"bin": "./bin/radiovis-stomp-server",
"scripts": {
"start": "node ./bin/radiovis-stomp-server",
"test": "mocha && standard",
"coverage": "nyc --reporter=html --reporter=text mocha",
"spec": "speculate"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bbc/node-radiovis-stomp-server.git"
},
"keywords": [
"STOMP",
"RadioVis",
"RadioDNS"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/node-radiovis-stomp-server/issues"
},
"homepage": "https://github.com/bbc/node-radiovis-stomp-server#readme",
"engines": {
"node": "^10.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"moment": "^2.29.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"standard": "^16.0.3"
},
"mocha": {
"recursive": true
},
"standard": {
"env": [
"mocha"
]
}
}