package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "jsonpointer",
  3. "description": "Simple JSON Addressing.",
  4. "tags": [
  5. "util",
  6. "simple",
  7. "util",
  8. "utility"
  9. ],
  10. "version": "5.0.1",
  11. "author": "Jan Lehnardt <jan@apache.org>",
  12. "contributors": [
  13. "Joe Hildebrand <joe-github@cursive.net>",
  14. "Marc Bachmann <marc.brookman@gmail.com>"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/janl/node-jsonpointer.git"
  19. },
  20. "bugs": {
  21. "url": "http://github.com/janl/node-jsonpointer/issues"
  22. },
  23. "engines": {
  24. "node": ">=0.10.0"
  25. },
  26. "main": "./jsonpointer",
  27. "typings": "jsonpointer.d.ts",
  28. "files": [
  29. "jsonpointer.js",
  30. "jsonpointer.d.ts"
  31. ],
  32. "scripts": {
  33. "test": "npm run test:standard && npm run test:all",
  34. "test:standard": "standard",
  35. "test:all": "node test.js",
  36. "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  37. },
  38. "license": "MIT",
  39. "devDependencies": {
  40. "semantic-release": "^18.0.0",
  41. "standard": "^16.0.4"
  42. },
  43. "standard": {
  44. "ignore": [
  45. "test.js"
  46. ]
  47. }
  48. }