package.json 776 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "fast-json-parse",
  3. "version": "1.0.3",
  4. "description": "Parse json safely and at max speed",
  5. "main": "parse.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/mcollina/fast-json-parse.git"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/mcollina/fast-json-parse/issues"
  12. },
  13. "homepage": "https://github.com/mcollina/fast-json-parse#readme",
  14. "scripts": {
  15. "test": "standard && tap test.js"
  16. },
  17. "pre-commit": "test",
  18. "keywords": [
  19. "parse",
  20. "json",
  21. "fast",
  22. "safe"
  23. ],
  24. "author": "Matteo Collina <hello@matteocollina.com>",
  25. "license": "MIT",
  26. "devDependencies": {
  27. "benchmark": "^2.1.0",
  28. "json-parse-safe": "^1.0.3",
  29. "pre-commit": "^1.1.2",
  30. "standard": "^6.0.5",
  31. "tap": "^5.5.0"
  32. }
  33. }