package.json (1528B)
1 { 2 "name": "execa", 3 "version": "7.2.0", 4 "description": "Process execution for humans", 5 "license": "MIT", 6 "repository": "sindresorhus/execa", 7 "funding": "https://github.com/sindresorhus/execa?sponsor=1", 8 "author": { 9 "name": "Sindre Sorhus", 10 "email": "sindresorhus@gmail.com", 11 "url": "https://sindresorhus.com" 12 }, 13 "type": "module", 14 "exports": "./index.js", 15 "engines": { 16 "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 17 }, 18 "scripts": { 19 "test": "xo && c8 ava && tsd" 20 }, 21 "files": [ 22 "index.js", 23 "index.d.ts", 24 "lib" 25 ], 26 "keywords": [ 27 "exec", 28 "child", 29 "process", 30 "execute", 31 "fork", 32 "execfile", 33 "spawn", 34 "file", 35 "shell", 36 "bin", 37 "binary", 38 "binaries", 39 "npm", 40 "path", 41 "local", 42 "zx" 43 ], 44 "dependencies": { 45 "cross-spawn": "^7.0.3", 46 "get-stream": "^6.0.1", 47 "human-signals": "^4.3.0", 48 "is-stream": "^3.0.0", 49 "merge-stream": "^2.0.0", 50 "npm-run-path": "^5.1.0", 51 "onetime": "^6.0.0", 52 "signal-exit": "^3.0.7", 53 "strip-final-newline": "^3.0.0" 54 }, 55 "devDependencies": { 56 "@types/node": "^18.13.0", 57 "ava": "^5.2.0", 58 "c8": "^7.12.0", 59 "get-node": "^13.5.0", 60 "is-running": "^2.1.0", 61 "p-event": "^5.0.1", 62 "path-key": "^4.0.0", 63 "tempfile": "^4.0.0", 64 "tsd": "^0.25.0", 65 "xo": "^0.54.2" 66 }, 67 "c8": { 68 "reporter": [ 69 "text", 70 "lcov" 71 ], 72 "exclude": [ 73 "**/fixtures/**", 74 "**/test.js", 75 "**/test/**" 76 ] 77 }, 78 "ava": { 79 "workerThreads": false 80 }, 81 "xo": { 82 "rules": { 83 "unicorn/no-empty-file": "off", 84 "@typescript-eslint/ban-types": "off" 85 } 86 } 87 }