forked from noflo/noflo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
{
"name": "noflo",
"description": "Flow-Based Programming environment for JavaScript",
"keywords": [
"fbp",
"workflow",
"flow",
"noflo"
],
"author": "Henri Bergius <[email protected]>",
"version": "1.1.2",
"license": "MIT",
"engines": {
"node": ">= 6"
},
"dependencies": {
"coffeescript": "^2.2.1",
"debug": "^3.0.0",
"fbp": "^1.5.0",
"fbp-graph": "^0.3.1",
"fbp-manifest": "^0.2.0",
"get-function-params": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.0",
"coffee-coverage": "^3.0.0",
"coveralls": "^3.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "^0.0.16",
"grunt-contrib-coffee": "^2.0.0",
"grunt-contrib-connect": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-phantomjs": "^4.0.0",
"grunt-mocha-test": "^0.13.2",
"grunt-noflo-browser": "^1.5.2",
"mocha": "^5.0.0",
"nyc": "^11.2.1"
},
"main": "./lib/NoFlo",
"bin": {
"noflo": "./bin/noflo",
"noflo-cache-preheat": "./bin/noflo-cache-preheat"
},
"homepage": "http://noflojs.org/",
"repository": {
"type": "git",
"url": "git://github.com/noflo/noflo.git"
},
"scripts": {
"test": "nyc grunt test",
"posttest": "nyc check-coverage --lines 75",
"build": "grunt build"
},
"docco_husky": {
"output_dir": "docs",
"project_name": "NoFlo"
},
"nyc": {
"include": [
"src/**/*.coffee"
]
}
}