-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "spawn-please",
"version": "3.0.0",
"description": "Easy and small child_process.spawn",
"license": "ISC",
"repository": "raineorshine/spawn-please",
"author": {
"name": "Raine Revere",
"url": "https://github.com/raineorshine"
},
"engines": {
"node": ">=14"
},
"main": "./src/index.js",
"types": "./types/index.d.ts",
"keywords": [
"promise",
"promisified",
"child_process",
"child process",
"exec",
"spawn",
"stdin",
"stdout",
"stderr"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lintfix": "eslint --fix .",
"test": "mocha src/test"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-raine": "^0.4.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.14",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"require-new": "^1.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"cross-spawn": "^7.0.3"
}
}