package.json 551 B

12345678910111213141516171819202122
  1. {
  2. "name": "jsonparse",
  3. "description": "This is a pure-js JSON streaming parser for node.js",
  4. "tags": ["json", "stream"],
  5. "version": "1.3.1",
  6. "author": "Tim Caswell <tim@creationix.com>",
  7. "repository": {
  8. "type": "git",
  9. "url": "http://github.com/creationix/jsonparse.git"
  10. },
  11. "devDependencies": {
  12. "tape": "~0.1.1",
  13. "tap": "~0.3.3"
  14. },
  15. "scripts": {
  16. "test": "tap test/*.js"
  17. },
  18. "bugs": "http://github.com/creationix/jsonparse/issues",
  19. "engines": ["node >= 0.2.0"],
  20. "license": "MIT",
  21. "main": "jsonparse.js"
  22. }