package.json 517 B

1234567891011121314151617181920212223
  1. {
  2. "name": "node-releases",
  3. "version": "1.1.18",
  4. "description": "Node.js releases data",
  5. "scripts": {
  6. "build": "npm run fetch && npm run process",
  7. "fetch": "node scripts/fetch.js",
  8. "process": "node scripts/process.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/chicoxyzzy/node-releases.git"
  13. },
  14. "keywords": [
  15. "nodejs",
  16. "releases"
  17. ],
  18. "author": "Sergey Rubanov <chi187@gmail.com>",
  19. "license": "MIT",
  20. "dependencies": {
  21. "semver": "^5.3.0"
  22. }
  23. }