-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "noflo-nodejs",
"version": "0.15.3",
"description": "Command-line tool for running NoFlo programs on Node.js",
"main": "src/library.js",
"scripts": {
"pretest": "eslint src/*.js spec/*.js",
"test": "mocha --exit spec/*.js"
},
"bin": {
"noflo-nodejs": "./bin/noflo-nodejs"
},
"author": "Henri Bergius <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo-nodejs.git"
},
"dependencies": {
"cli-color": "^2.0.0",
"clone": "^2.1.1",
"commander": "^6.1.0",
"debounce-promise": "^3.1.2",
"fbp-graph": "^0.7.0",
"flowhub-registry": "^0.2.0",
"mdns-js": "^1.0.3",
"noflo": "^1.4.0",
"noflo-runtime-base": "^0.13.1",
"noflo-runtime-webrtc": "^0.13.0",
"noflo-runtime-websocket": "^0.13.0",
"open": "^8.0.1",
"password-generator": "^2.2.0",
"slug": "^4.0.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-mocha": "^10.1.0",
"fbp-client": "^0.4.1",
"fbp-protocol": "^0.9.8",
"fbp-protocol-healthcheck": "^1.1.0",
"fbp-spec": "^0.8.0",
"mocha": "^10.0.0",
"noflo-core": ">= 0.6.0"
},
"keywords": [
"noflo",
"ecosystem:noflo"
]
}