{
  "name": "best-effort-json-parser",
  "version": "1.4.0",
  "description": "Parse incomplete json text in best-effort manner",
  "keywords": [
    "json",
    "parser",
    "auto-fix",
    "auto-repair",
    "best-effort"
  ],
  "author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
  "license": "BSD-2-Clause",
  "main": "dist/parse.js",
  "types": "dist/parse.d.ts",
  "scripts": {
    "test": "run-s format tsc mocha",
    "clean": "rimraf dist",
    "format": "prettier --write \"src/**/*.ts\"",
    "postformat": "tslint -p . --fix && format-json-cli",
    "build": "run-s clean tsc",
    "tsc": "tsc -p .",
    "mocha": "ts-mocha \"src/**/*.spec.ts\"",
    "coverage": "nyc npm run mocha -- --reporter=progress",
    "report:update": "nyc --reporter=lcov npm run mocha -- --reporter=progress",
    "report:open": "open-cli coverage/lcov-report/index.html",
    "report": "run-s report:update report:open",
    "prepublishOnly": "run-s test build"
  },
  "directories": {
    "example": "example",
    "test": "test"
  },
  "files": [
    "dist",
    "src"
  ],
  "devDependencies": {
    "@types/chai": "^4.2.14",
    "@types/mocha": "^8.2.0",
    "@types/node": "*",
    "@types/sinon": "^9.0.9",
    "chai": "^4.2.0",
    "format-json-cli": "^1.0.1",
    "mocha": "^8.2.1",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.1.0",
    "open-cli": "^6.0.1",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "sinon": "^9.2.2",
    "ts-mocha": "^8.0.0",
    "ts-node": "^9.1.1",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "tslint-eslint-rules": "^5.4.0",
    "tslint-etc": "^1.13.9",
    "typescript": "^4.8.3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/beenotung/best-effort-json-parser.git"
  },
  "bugs": {
    "url": "https://github.com/beenotung/best-effort-json-parser/issues"
  },
  "homepage": "https://github.com/beenotung/best-effort-json-parser#readme"
}
