You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.4 KiB
JSON
84 lines
1.4 KiB
JSON
3 years ago
|
{
|
||
|
"name": "execa",
|
||
|
"version": "6.1.0",
|
||
|
"description": "Process execution for humans",
|
||
|
"license": "MIT",
|
||
|
"repository": "sindresorhus/execa",
|
||
|
"funding": "https://github.com/sindresorhus/execa?sponsor=1",
|
||
|
"author": {
|
||
|
"name": "Sindre Sorhus",
|
||
|
"email": "sindresorhus@gmail.com",
|
||
|
"url": "https://sindresorhus.com"
|
||
|
},
|
||
|
"type": "module",
|
||
|
"exports": "./index.js",
|
||
|
"engines": {
|
||
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "xo && c8 ava && tsd"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js",
|
||
|
"index.d.ts",
|
||
|
"lib"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"exec",
|
||
|
"child",
|
||
|
"process",
|
||
|
"execute",
|
||
|
"fork",
|
||
|
"execfile",
|
||
|
"spawn",
|
||
|
"file",
|
||
|
"shell",
|
||
|
"bin",
|
||
|
"binary",
|
||
|
"binaries",
|
||
|
"npm",
|
||
|
"path",
|
||
|
"local"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"cross-spawn": "^7.0.3",
|
||
|
"get-stream": "^6.0.1",
|
||
|
"human-signals": "^3.0.1",
|
||
|
"is-stream": "^3.0.0",
|
||
|
"merge-stream": "^2.0.0",
|
||
|
"npm-run-path": "^5.1.0",
|
||
|
"onetime": "^6.0.0",
|
||
|
"signal-exit": "^3.0.7",
|
||
|
"strip-final-newline": "^3.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^17.0.17",
|
||
|
"ava": "^4.0.1",
|
||
|
"c8": "^7.11.0",
|
||
|
"get-node": "^12.0.0",
|
||
|
"is-running": "^2.1.0",
|
||
|
"p-event": "^5.0.1",
|
||
|
"semver": "^7.3.5",
|
||
|
"tempfile": "^4.0.0",
|
||
|
"tsd": "^0.19.1",
|
||
|
"xo": "^0.48.0"
|
||
|
},
|
||
|
"c8": {
|
||
|
"reporter": [
|
||
|
"text",
|
||
|
"lcov"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/fixtures/**",
|
||
|
"**/test.js",
|
||
|
"**/test/**"
|
||
|
]
|
||
|
},
|
||
|
"xo": {
|
||
|
"rules": {
|
||
|
"unicorn/no-empty-file": "off",
|
||
|
"@typescript-eslint/ban-types": "off"
|
||
|
}
|
||
|
}
|
||
|
}
|