12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "exec-sh",
- "version": "0.2.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": {
- "type": "MIT",
- "url": "https://github.com/tsertkov/exec-sh/blob/master/LICENSE"
- },
- "bugs": {
- "url": "https://github.com/tsertkov/exec-sh/issues"
- },
- "dependencies": {
- "merge": "^1.2.0"
- },
- "devDependencies": {
- "coveralls": "^3.0.1",
- "istanbul": "^0.4.5",
- "jsdoc": "^3.5.5",
- "jshint": "^2.9.5",
- "mocha": "^5.2.0",
- "sinon": "^6.0.1",
- "standard": "^11.0.1"
- }
- }
|