This repository was archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
57 lines (53 loc) · 1.23 KB
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
{
"name": "jsfbp",
"version": "3.0.1",
"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 <dancrumb@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jpaulm/jsfbp/issues"
},
"homepage": "https://github.com/jpaulm/jsfbp",
"dependencies": {
"create-npmrc": "^2.0.2",
"detect-libc": "^1.0.3",
"fibers": "^5.0.0",
"lodash": "^4.17.21",
"parsefbp": "^0.3.0",
"snyk": "^1.518.0"
},
"main": "index.js",
"devDependencies": {
"chai": "4.3.4",
"eslint": "7.32.0",
"eslint-config-defaults": "9.0.0",
"mocha": "8.4.0",
"ws": "7.5.5",
"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
}