package.json 928 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "read-package-json",
  3. "version": "2.1.2",
  4. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  5. "description": "The thing npm uses to read package.json files with semantics and defaults and validation",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/read-package-json.git"
  9. },
  10. "main": "read-json.js",
  11. "scripts": {
  12. "prerelease": "npm t",
  13. "postrelease": "npm publish && git push --follow-tags",
  14. "pretest": "standard",
  15. "release": "standard-version -s",
  16. "test": "tap --nyc-arg=--all --coverage test/*.js"
  17. },
  18. "dependencies": {
  19. "glob": "^7.1.1",
  20. "normalize-package-data": "^2.0.0",
  21. "npm-normalize-package-bin": "^1.0.0",
  22. "json-parse-even-better-errors": "^2.3.0"
  23. },
  24. "devDependencies": {
  25. "standard": "^11.0.0",
  26. "standard-version": "^4.3.0",
  27. "tap": "^11.1.2"
  28. },
  29. "license": "ISC",
  30. "files": [
  31. "read-json.js"
  32. ]
  33. }