-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 922 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
{
"name": "noflo-subprocess",
"version": "0.3.0",
"description": "NoFlo library to execute commands as subprocess",
"scripts": {
"pretest": "eslint .",
"test": "mocha -R spec -t 2000 spec/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noflo/noflo-subprocess.git"
},
"keywords": [
"noflo",
"child_process",
"exec",
"subprocess"
],
"author": "Gabriela Thumé <gabithume@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/noflo/noflo-subprocess/issues"
},
"homepage": "https://github.com/noflo/noflo-subprocess#readme",
"dependencies": {
"noflo": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1"
}
}