package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "shelljs",
  3. "version": "0.7.8",
  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. "posttest": "npm run lint",
  37. "test": "nyc --reporter=text --reporter=lcov ava --serial test/*.js",
  38. "test-no-coverage": "ava --serial test/*.js",
  39. "gendocs": "node scripts/generate-docs",
  40. "lint": "eslint .",
  41. "after-travis": "travis-check-changes",
  42. "changelog": "shelljs-changelog",
  43. "codecov": "codecov",
  44. "release:major": "shelljs-release major",
  45. "release:minor": "shelljs-release minor",
  46. "release:patch": "shelljs-release patch"
  47. },
  48. "bin": {
  49. "shjs": "./bin/shjs"
  50. },
  51. "dependencies": {
  52. "glob": "^7.0.0",
  53. "interpret": "^1.0.0",
  54. "rechoir": "^0.6.2"
  55. },
  56. "devDependencies": {
  57. "ava": "^0.16.0",
  58. "codecov": "^1.0.1",
  59. "coffee-script": "^1.10.0",
  60. "eslint": "^2.0.0",
  61. "eslint-config-airbnb-base": "^3.0.0",
  62. "eslint-plugin-import": "^1.11.1",
  63. "nyc": "^10.0.0",
  64. "shelljs-changelog": "^0.2.0",
  65. "shelljs-release": "^0.2.0",
  66. "shx": "^0.2.0",
  67. "travis-check-changes": "^0.2.0"
  68. },
  69. "optionalDependencies": {},
  70. "engines": {
  71. "node": ">=0.11.0",
  72. "iojs": "*"
  73. }
  74. }