-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "noflo-runtime-websocket",
"description": "NoFlo runtime for execution on Node.js over WebSockets",
"version": "0.13.0",
"author": {
"name": "Henri Bergius",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-runtime-websocket.git"
},
"license": "MIT",
"dependencies": {
"commander": "^6.1.0",
"debug": "^4.1.1",
"noflo-runtime-base": "^0.13.0",
"websocket": "~1.0.24"
},
"keywords": [
"noflo"
],
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.8.0",
"fbp-protocol": "^0.9.8",
"fbp-protocol-healthcheck": "^1.1.0",
"mocha": "^8.1.3",
"noflo-core": ">= 0.6.0",
"nyc": "^15.1.0"
},
"main": "./runtime/network.js",
"scripts": {
"pretest": "eslint runtime/*.js",
"test": "nyc mocha --exit spec/*.js"
},
"bin": {
"noflo-websocket-runtime": "./bin/noflo-websocket-runtime"
},
"nyc": {
"include": [
"runtime/*.js"
]
}
}