package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "bfj",
  3. "version": "7.1.0",
  4. "description": "Big-friendly JSON. Asynchronous streaming functions for large JSON data sets.",
  5. "homepage": "https://gitlab.com/philbooth/bfj",
  6. "bugs": "https://gitlab.com/philbooth/bfj/issues",
  7. "license": "MIT",
  8. "author": "Phil Booth (https://gitlab.com/philbooth)",
  9. "main": "./src",
  10. "keywords": [
  11. "json",
  12. "streamify",
  13. "stringify",
  14. "walk",
  15. "parse",
  16. "parser",
  17. "serialise",
  18. "serialize",
  19. "read",
  20. "write",
  21. "async",
  22. "asynchronous"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "https://gitlab.com/philbooth/bfj.git"
  27. },
  28. "engines": {
  29. "node": ">= 8.0.0"
  30. },
  31. "dependencies": {
  32. "bluebird": "^3.7.2",
  33. "check-types": "^11.2.3",
  34. "hoopy": "^0.1.4",
  35. "jsonpath": "^1.1.1",
  36. "tryer": "^1.0.1"
  37. },
  38. "devDependencies": {
  39. "axios": "^1.5.0",
  40. "chai": "^4.3.8",
  41. "eslint": "^8.48.0",
  42. "mocha": "^10.2.0",
  43. "please-release-me": "^2.1.4",
  44. "proxyquire": "^2.1.3",
  45. "spooks": "^2.0.0"
  46. },
  47. "scripts": {
  48. "lint": "eslint src",
  49. "test": "npm run unit && npm run integration",
  50. "unit": "mocha --ui tdd --reporter spec --recursive --colors --slow 120 test/unit",
  51. "integration": "mocha --ui tdd --reporter spec --colors test/integration",
  52. "perf": "wget -O test/mtg.json http://mtgjson.com/json/AllSets-x.json && node test/performance mtg"
  53. }
  54. }