-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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": "p-spawn",
"version": "0.5.5",
"description": "Yet another spawn promise!",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/BriteSnow/node-p-spawn.git"
},
"keywords": [
"child_process",
"spawn",
"promise",
"async",
"await"
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.10.1",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepare": "node_modules/.bin/rimraf ./dist && ./node_modules/.bin/tsc",
"test": "TS_NODE_FILES=true ./node_modules/.bin/mocha -p ./test/tsconfig.json ./test/spec/*.spec.ts",
"testw": "TS_NODE_FILES=true ./node_modules/.bin/mocha -p ./test/tsconfig.json ./test/spec/*.spec.ts --watch --watch-files './test/**/*.ts, ./src/**/*.ts'"
},
"author": "Jeremy Chone <jeremy.chone@gmail.com> (http://jeremychone.com)",
"license": "MIT",
"files": [
"src/",
"dist/"
]
}