package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "npm-lifecycle",
  3. "version": "3.1.5",
  4. "description": "JavaScript package lifecycle hook runner",
  5. "main": "index.js",
  6. "scripts": {
  7. "prerelease": "npm t",
  8. "postrelease": "npm publish && git push --follow-tags",
  9. "pretest": "standard",
  10. "release": "standard-version -s",
  11. "test": "tap -J --cov test/*.js",
  12. "snap": "TAP_SNAPSHOT=1 npm test"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/npm/lifecycle.git"
  17. },
  18. "keywords": [
  19. "npm",
  20. "lifecycle",
  21. "hook",
  22. "runner"
  23. ],
  24. "author": "Mike Sherov",
  25. "license": "Artistic-2.0",
  26. "bugs": {
  27. "url": "https://github.com/npm/lifecycle/issues"
  28. },
  29. "homepage": "https://github.com/npm/lifecycle#readme",
  30. "dependencies": {
  31. "byline": "^5.0.0",
  32. "graceful-fs": "^4.1.15",
  33. "node-gyp": "^5.0.2",
  34. "resolve-from": "^4.0.0",
  35. "slide": "^1.1.6",
  36. "uid-number": "0.0.6",
  37. "umask": "^1.1.0",
  38. "which": "^1.3.1"
  39. },
  40. "devDependencies": {
  41. "nyc": "^14.1.0",
  42. "sinon": "^7.2.3",
  43. "standard": "^12.0.1",
  44. "standard-version": "^4.4.0",
  45. "tap": "^12.7.0"
  46. },
  47. "files": [
  48. "index.js",
  49. "lib/spawn.js",
  50. "node-gyp-bin"
  51. ]
  52. }