-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "shell-exec",
"version": "1.1.2",
"description": "A tiny cross-platform promise based wrapper around child_process.spawn.",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/tiaanduplessis/shell-exec",
"type": "git"
},
"homepage": "https://github.com/tiaanduplessis/shell-exec#readme",
"bugs": {
"url": "https://github.com/tiaanduplessis/shell-exec/issues"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rm -rf dist && tsup src/index.ts --format cjs,esm --dts --target node12",
"prepublishOnly": "pnpm run build",
"types:check": "tsc --noEmit",
"format": "pretty-quick --ignore-path .gitignore",
"start": "tsx example.ts"
},
"keywords": [
"shell-exec",
"shell",
"sh",
"exec"
],
"author": "Tiaan du Plessis",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"tsup": "^5.12.8",
"tsx": "^3.1.0",
"typescript": "^4.6.4",
"vitest": "^0.12.6"
}
}