package.json 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "exec-sh",
  3. "version": "0.3.6",
  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": "nyc --reporter=lcov --report-dir=artifacts/coverage mocha",
  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": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/tsertkov/exec-sh/issues"
  30. },
  31. "devDependencies": {
  32. "coveralls": "^3.1.0",
  33. "jsdoc": "^3.6.6",
  34. "jshint": "^2.12.0",
  35. "mocha": "^8.3.2",
  36. "nyc": "^15.1.0",
  37. "sinon": "^9.2.4",
  38. "standard": "^16.0.3"
  39. }
  40. }