-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.16 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
55
56
57
58
{
"name": "spawk",
"version": "1.8.2",
"description": "child_process.spawn mocking library",
"main": "lib/spawk.js",
"types": "./types/spawk.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"preversion": "npm run test",
"posttest": "npm run lint",
"test": "nyc mocha --check-leaks"
},
"enginesStrict": true,
"engines": {
"node": ">=12.0.0"
},
"files": [
"lib/",
"types/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wraithgar/spawk.git"
},
"keywords": [
"child_process.spawn",
"mock",
"child_process",
"process",
"spawn"
],
"author": "Gar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wraithgar/spawk/issues"
},
"homepage": "https://github.com/wraithgar/spawk#readme",
"devDependencies": {
"chai": "^4.3.0",
"faker": "^5.4.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"standard": "^17.0.0"
},
"nyc": {
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"eslintConfig": {
"env": {
"node": true
}
}
}