UNPKG

1.16 kBJSONView Raw
1{
2 "name": "exec-sh",
3 "version": "0.4.0",
4 "description": "Execute shell command forwarding all stdio.",
5 "main": "lib/exec-sh.js",
6 "types": "types/index.d.ts",
7 "scripts": {
8 "test": "npm run lint && npm run test-ts && npm run cover-test",
9 "test-ts": "tsc --noEmit example/example.ts",
10 "cover-test": "nyc --reporter=lcov --report-dir=artifacts/coverage mocha",
11 "lint": "standard --verbose **/*.js",
12 "dev": "mocha --reporter spec --watch",
13 "jsdoc": "jsdoc --private --destination artifacts/jsdoc lib/"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git@github.com:tsertkov/exec-sh.git"
18 },
19 "keywords": [
20 "exec",
21 "spawn",
22 "terminal",
23 "console",
24 "shell",
25 "command",
26 "child_process"
27 ],
28 "author": "Aleksandr Tsertkov <tsertkov@gmail.com>",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/tsertkov/exec-sh/issues"
32 },
33 "devDependencies": {
34 "@types/node": "^14.14.35",
35 "coveralls": "^3.1.0",
36 "jsdoc": "^3.6.6",
37 "jshint": "^2.12.0",
38 "mocha": "^8.3.2",
39 "nyc": "^15.1.0",
40 "sinon": "^9.2.4",
41 "standard": "^16.0.3",
42 "typescript": "^4.2.3"
43 }
44}