package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "exec-sh",
  3. "version": "0.2.2",
  4. "description": "Execute shell command forwarding all stdio.",
  5. "main": "lib/exec-sh.js",
  6. "scripts": {
  7. "test": "npm run lint && npm run cover-test",
  8. "cover-test": "istanbul cover --dir artifacts/coverage _mocha -- --reporter spec",
  9. "lint": "standard --verbose **/*.js",
  10. "dev": "mocha --reporter spec --watch",
  11. "jsdoc": "jsdoc --private --destination artifacts/jsdoc lib/"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:tsertkov/exec-sh.git"
  16. },
  17. "keywords": [
  18. "exec",
  19. "spawn",
  20. "terminal",
  21. "console",
  22. "shell",
  23. "command",
  24. "child_process"
  25. ],
  26. "author": "Aleksandr Tsertkov <tsertkov@gmail.com>",
  27. "license": {
  28. "type": "MIT",
  29. "url": "https://github.com/tsertkov/exec-sh/blob/master/LICENSE"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/tsertkov/exec-sh/issues"
  33. },
  34. "dependencies": {
  35. "merge": "^1.2.0"
  36. },
  37. "devDependencies": {
  38. "coveralls": "^3.0.1",
  39. "istanbul": "^0.4.5",
  40. "jsdoc": "^3.5.5",
  41. "jshint": "^2.9.5",
  42. "mocha": "^5.2.0",
  43. "sinon": "^6.0.1",
  44. "standard": "^11.0.1"
  45. }
  46. }