UNPKG

bfj

Version:

Big-friendly JSON. Asynchronous streaming functions for large JSON data sets.

55 lines (54 loc) 1.5 kB
{ "name": "bfj", "version": "9.1.2", "description": "Big-friendly JSON. Asynchronous streaming functions for large JSON data sets.", "homepage": "https://gitlab.com/philbooth/bfj", "bugs": "https://gitlab.com/philbooth/bfj/issues", "license": "MIT", "author": "Phil Booth (https://gitlab.com/philbooth)", "main": "./src", "keywords": [ "json", "streamify", "stringify", "walk", "parse", "parser", "serialise", "serialize", "read", "write", "async", "asynchronous" ], "repository": { "type": "git", "url": "https://gitlab.com/philbooth/bfj.git" }, "engines": { "node": ">= 18.0.0" }, "dependencies": { "check-types": "^11.2.3", "hoopy": "^0.1.4", "jsonpath": "^1.1.1", "tryer": "^1.0.1" }, "devDependencies": { "axios": "^1.7.7", "chai": "^4.5.0", "eslint": "^8.57.1", "mocha": "^10.7.3", "please-release-me": "^2.1.6", "proxyquire": "^2.1.3", "spooks": "^2.0.0" }, "scripts": { "lint": "eslint src", "test": "npm run unit && npm run integration", "unit": "mocha --ui tdd --reporter spec --recursive --colors --slow 120 test/unit", "integration": "mocha --ui tdd --reporter spec --colors test/integration", "perf": "wget -O test/mtg.json https://mtgjson.com/api/v5/AllPrices.json && node test/performance mtg", "perf-match": "wget -O test/mtg.json https://mtgjson.com/api/v5/AllPrices.json && node test/performance mtg currency" } }