-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "promisify-child-process",
"version": "0.0.0-development",
"description": "seriously like the best async child process library",
"engines": {
"node": ">=16"
},
"types": "dist/index.d.cts",
"type": "module",
"sideEffects": false,
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/promisify-child-process.git"
},
"keywords": [
"child",
"process",
"child_process",
"exec",
"spawn",
"execFile",
"fork",
"promise",
"promises",
"async",
"await",
"thenable"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/promisify-child-process/issues"
},
"homepage": "https://github.com/jcoreio/promisify-child-process#readme",
"devDependencies": {
"@jcoreio/toolchain": "^5.8.8",
"@jcoreio/toolchain-circle": "^5.8.8",
"@jcoreio/toolchain-esnext": "^5.8.8",
"@jcoreio/toolchain-mocha": "^5.8.8",
"@jcoreio/toolchain-semantic-release": "^5.8.8",
"@jcoreio/toolchain-typescript": "^5.8.8",
"@types/chai": "^4",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10",
"@types/node": "^20.19.31",
"chai": "^4.3.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^3.3.0",
"fs-extra": "^11.3.3",
"globals": "^16.0.0",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.4.2",
"typescript": "^5.1.0",
"waait": "^1.0.5"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": {
"import": "./dist/index.d.ts",
"default": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"packageManager": "pnpm@10.6.5",
"dependencies": {
"@babel/runtime": "^7.26.0"
},
"@jcoreio/toolchain": {
"migratedVersion": "5.8.8"
}
}