-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "fbp-spec",
"version": "0.8.0",
"description": "Data-driven FBP component/graph testing tool",
"keywords": [
"fbp"
],
"author": "Jon Nordby <[email protected]> (http://www.jonnor.com)",
"repository": {
"type": "git",
"url": "http://github.com/flowbased/fbp-spec.git"
},
"bugs": "http://github.com/flowbased/fbp-spec/issues",
"homepage": "http://flowbased.org",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "grunt build",
"pretest": "eslint *.js lib/*.js spec/*.js",
"test": "grunt test --stack"
},
"bin": {
"fbp-spec": "./bin/fbp-spec",
"fbp-spec-mocha": "./bin/fbp-spec-mocha"
},
"dependencies": {
"bluebird": "^3.5.0",
"chai": "~4.2.0",
"commander": "~6.2.0",
"debug": "~4.3.1",
"fbp": "^1.7.0",
"fbp-client": "^0.4.1",
"fbp-graph": "^0.7.0",
"flowtrace": "^0.1.2",
"isomorphic-fetch": "^3.0.0",
"js-yaml": "~4.0.0",
"jsonpath": "^1.0.2",
"mocha": "~8.2.0",
"slug": "^4.0.2",
"tv4": "~1.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"buffer": "^6.0.1",
"es6-shim": "^0.35.3",
"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",
"events": "^3.2.0",
"grunt": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-karma": "^4.0.0",
"grunt-mocha-test": "^0.13.2",
"grunt-webpack": "^4.0.2",
"grunt-yaml": "^0.4.2",
"grunt-yamllint": "https://github.com/gruntjs-updater/grunt-yamllint.git#8e7c04a",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"path-browserify": "^1.0.1",
"url": "^0.11.0",
"webpack": "^5.1.3",
"websocket": "^1.0.26"
}
}