-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.17 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
52
53
{
"name": "radiovis-stomp-server",
"version": "0.2.0",
"description": "STOMP server implementation for RadioVis",
"main": "./lib/radiovis-server.js",
"bin": {
"radiovis-stomp-server": "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": "^20.0.0"
},
"dependencies": {
"body-parser": "^1.20.2",
"ejs": "^3.1.9",
"express": "^4.18.3",
"moment": "^2.30.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"standard": "^17.1.0"
},
"mocha": {
"recursive": true
},
"standard": {
"env": [
"mocha"
]
}
}