-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.4 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": "fbp-protocol",
"description": "Tests, schemas, and documentation for the Flow Base Programming Network Protocol",
"version": "0.9.8",
"author": {
"name": "Henri Bergius",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/flowbased/fbp-protocol.git"
},
"license": "MIT",
"bin": {
"fbp-init": "./bin/fbp-init",
"fbp-test": "./bin/fbp-test"
},
"scripts": {
"serve": "http-server dist",
"build": "grunt build",
"pretest": "eslint *.js src/*.js test/*.js test/**/*.js schema/format.js schema/index.js",
"test": "grunt test --stack"
},
"dependencies": {
"chai": "^4.1.2",
"commander": "^6.1.0",
"mocha": "^8.1.3",
"moment": "^2.13.0",
"semver": "^7.3.2",
"tv4": "^1.2.7",
"websocket": "^1.0.8"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-jekyll": "^1.0.1",
"grunt-mocha-test": "^0.13.2",
"grunt-yaml": "^0.4.2",
"http-server": "^0.12.3",
"json-schema-ref-parser": "^9.0.6",
"noflo-core": "^0.6.0",
"noflo-nodejs": "^0.15.0",
"uuid": "^8.3.0"
},
"main": "./schema/index.js"
}