mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
41 lines
1 KiB
JSON
41 lines
1 KiB
JSON
{
|
|
"name": "exec-sh",
|
|
"version": "0.3.2",
|
|
"description": "Execute shell command forwarding all stdio.",
|
|
"main": "lib/exec-sh.js",
|
|
"scripts": {
|
|
"test": "npm run lint && npm run cover-test",
|
|
"cover-test": "istanbul cover --dir artifacts/coverage _mocha -- --reporter spec",
|
|
"lint": "standard --verbose **/*.js",
|
|
"dev": "mocha --reporter spec --watch",
|
|
"jsdoc": "jsdoc --private --destination artifacts/jsdoc lib/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:tsertkov/exec-sh.git"
|
|
},
|
|
"keywords": [
|
|
"exec",
|
|
"spawn",
|
|
"terminal",
|
|
"console",
|
|
"shell",
|
|
"command",
|
|
"child_process"
|
|
],
|
|
"author": "Aleksandr Tsertkov <tsertkov@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/tsertkov/exec-sh/issues"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"coveralls": "^3.0.1",
|
|
"istanbul": "^0.4.5",
|
|
"jsdoc": "^3.5.5",
|
|
"jshint": "^2.9.6",
|
|
"mocha": "^5.2.0",
|
|
"sinon": "^6.0.1",
|
|
"standard": "^11.0.1"
|
|
}
|
|
}
|