Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "bfj",
  3. "version": "6.1.2",
  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": ">= 6.0.0"
  30. },
  31. "dependencies": {
  32. "bluebird": "^3.5.5",
  33. "check-types": "^8.0.3",
  34. "hoopy": "^0.1.4",
  35. "tryer": "^1.0.1"
  36. },
  37. "devDependencies": {
  38. "chai": "^4.2.0",
  39. "eslint": "^6.0.1",
  40. "mocha": "^6.1.4",
  41. "please-release-me": "^2.1.2",
  42. "proxyquire": "^2.1.0",
  43. "request": "^2.88.0",
  44. "spooks": "^2.0.0"
  45. },
  46. "scripts": {
  47. "lint": "eslint src",
  48. "test": "npm run unit && npm run integration",
  49. "unit": "mocha --ui tdd --reporter spec --recursive --colors --slow 120 test/unit",
  50. "integration": "mocha --ui tdd --reporter spec --colors test/integration",
  51. "perf": "wget -O test/mtg.json http://mtgjson.com/json/AllSets-x.json && node test/performance mtg"
  52. }
  53. }