-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 916 Bytes
/
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
{
"name": "noflo-redis",
"description": "Redis components for the NoFlo flow-based programming environment",
"author": "Henri Bergius <henri.bergius@iki.fi>",
"version": "0.3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-redis.git"
},
"keywords": [
"noflo"
],
"engines": {
"node": ">=4.6"
},
"dependencies": {
"noflo": "^1.0.0",
"redis": "^3.0.2"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1",
"noflo-wrapper": "^0.5.0",
"nyc": "^15.1.0"
},
"noflo": {
"icon": "database"
},
"scripts": {
"pretest": "eslint components/*.js",
"test": "nyc mocha spec/*.js"
},
"nyc": {
"include": [
"components/*.js"
]
}
}