forked from jpaulm/jsfbp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "jsfbp",
"version": "3.0.0",
"description": "FBP implementation written using node-fibers ",
"repository": {
"type": "git",
"url": "git+https://github.com/jpaulm/jsfbp.git"
},
"engines": {
"node": ">= 12.4.0"
},
"keywords": [
"fbp",
"flow-based-programming",
"node-fibers"
],
"author": "J. Paul Morrison",
"contributors": [
"Dan Rumney <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jpaulm/jsfbp/issues"
},
"homepage": "https://github.com/jpaulm/jsfbp",
"dependencies": {
"detect-libc": "^1.0.3",
"fibers": "^4.0.1",
"fibrous": "^0.4.0",
"lodash": "^4.17.15",
"npm": "^6.10.1",
"parsefbp": "^0.3.0",
"snyk": "^1.197.0"
},
"main": "index.js",
"devDependencies": {
"chai": "4.2.0",
"eslint": "6.2.1",
"eslint-config-defaults": "9.0.0",
"mocha": "6.2.0",
"ws": "7.1.2",
"dummy-module": "*"
},
"directories": {
"doc": "docs"
},
"scripts": {
"test": "mocha --recursive -R spec --require test/test_helper.js test/components test/core",
"lint": "eslint components core examples test index.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}