package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "shelljs",
  3. "version": "0.8.5",
  4. "description": "Portable Unix shell commands for Node.js",
  5. "keywords": [
  6. "shelljs",
  7. "bash",
  8. "unix",
  9. "shell",
  10. "makefile",
  11. "make",
  12. "jake",
  13. "synchronous"
  14. ],
  15. "contributors": [
  16. "Nate Fischer <ntfschr@gmail.com> (https://github.com/nfischer)",
  17. "Brandon Freitag <freitagbr@gmail.com> (https://github.com/freitagbr)"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/shelljs/shelljs.git"
  22. },
  23. "license": "BSD-3-Clause",
  24. "homepage": "http://github.com/shelljs/shelljs",
  25. "main": "./shell.js",
  26. "files": [
  27. "commands.js",
  28. "global.js",
  29. "make.js",
  30. "plugin.js",
  31. "shell.js",
  32. "bin",
  33. "src"
  34. ],
  35. "scripts": {
  36. "ci-or-install": "node scripts/ci-or-install",
  37. "posttest": "npm run lint",
  38. "test": "nyc --reporter=text --reporter=lcov ava test/*.js",
  39. "test-no-coverage": "ava test/*.js",
  40. "gendocs": "node scripts/generate-docs",
  41. "lint": "eslint .",
  42. "after-travis": "travis-check-changes",
  43. "changelog": "shelljs-changelog",
  44. "codecov": "codecov",
  45. "release:major": "shelljs-release major",
  46. "release:minor": "shelljs-release minor",
  47. "release:patch": "shelljs-release patch"
  48. },
  49. "bin": {
  50. "shjs": "./bin/shjs"
  51. },
  52. "dependencies": {
  53. "glob": "^7.0.0",
  54. "interpret": "^1.0.0",
  55. "rechoir": "^0.6.2"
  56. },
  57. "ava": {
  58. "serial": true,
  59. "powerAssert": false
  60. },
  61. "devDependencies": {
  62. "ava": "^0.21.0",
  63. "chalk": "^1.1.3",
  64. "codecov": "^3.0.2",
  65. "coffee-script": "^1.10.0",
  66. "eslint": "^2.0.0",
  67. "eslint-config-airbnb-base": "^3.0.0",
  68. "eslint-plugin-import": "^1.11.1",
  69. "nyc": "^11.3.0",
  70. "shelljs-changelog": "^0.2.0",
  71. "shelljs-release": "^0.3.0",
  72. "shx": "^0.2.0",
  73. "travis-check-changes": "^0.2.0"
  74. },
  75. "optionalDependencies": {},
  76. "engines": {
  77. "node": ">=4"
  78. }
  79. }