-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 970 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
{
"name": "fork-require",
"version": "1.0.9",
"description": "Allows to \"require\" a file, while forking it into a child process.",
"author": "Ravi Gairola <[email protected]>",
"homepage": "https://github.com/mallocator/fork-require",
"license": "Apache-2.0",
"main": "index.js",
"keywords": [
"fork",
"spawn",
"child",
"process",
"cp",
"require",
"include"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mallocator/fork-require.git"
},
"bugs": {
"url": "https://github.com/mallocator/fork-require/issues",
"email": "[email protected]"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"gently": "^0.10",
"mocha": "^5.2.0",
"nyc": "^13.0.0"
},
"engine": {
"node": ">=10.0"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha --exit --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}