-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "fbp",
"description": "Parser for the .fbp flow definition language",
"version": "1.8.0",
"repository": {
"type": "git",
"url": "git://github.com/flowbased/fbp.git"
},
"contributors": [
{
"name": "James",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.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-karma": "^4.0.0",
"grunt-mocha-test": "^0.13.2",
"grunt-noflo-browser": "^2.0.2",
"grunt-peg": "^2.0.1",
"grunt-yaml": "^0.4.2",
"json-loader": "^0.5.4",
"karma": "^6.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^8.1.3",
"noflo-component-loader": "^0.4.0",
"noflo-webpack-config": "^2.0.2",
"nyc": "^15.1.0",
"tv4": "^1.2.7",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"keywords": [],
"scripts": {
"pretest": "eslint *.js lib/index.js lib/serialize.js spec/*.js",
"test": "nyc grunt test"
},
"main": "./lib/index",
"bin": {
"fbp": "./bin/fbp"
},
"nyc": {
"include": [
"lib/*.js"
]
}
}