No Description

package.json 721B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "read-pkg",
  3. "version": "1.1.0",
  4. "description": "Read a package.json file",
  5. "license": "MIT",
  6. "repository": "sindresorhus/read-pkg",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "json",
  23. "read",
  24. "parse",
  25. "file",
  26. "fs",
  27. "graceful",
  28. "load",
  29. "pkg",
  30. "package",
  31. "normalize"
  32. ],
  33. "dependencies": {
  34. "load-json-file": "^1.0.0",
  35. "normalize-package-data": "^2.3.2",
  36. "path-type": "^1.0.0"
  37. },
  38. "devDependencies": {
  39. "ava": "*",
  40. "xo": "*"
  41. }
  42. }