{
  "name": "dirty-json-ie11",
  "version": "0.0.2",
  "description": "A permissive parser for dirty JSON data that does its best",
  "main": "dirty-json.js",
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "test": "node_modules/mocha/bin/mocha",
    "report": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
    "build": "babel dirty-json.js lexer.js parser.js --presets babel-preset-es2015 --out-dir .",
    "prepublish": "npm run build"
  },
  "keywords": [
    "json",
    "parser",
    "malformed"
  ],
  "author": "Ryan Marcus <ryan@rmarcus.info>",
  "license": "AGPL-3.0",
  "dependencies": {
    "lex": "^1.7.9",
    "unescape-js": "^1.0.8",
    "utf8": "^2.1.2"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "coveralls": "^3.0.2",
    "istanbul": "^0.4.5",
    "mocha": "^5.2.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/RyanMarcus/dirty-json.git"
  },
  "jshintConfig": {
    "esversion": 6,
    "node": true
  }
}
