{
  "author": "tony_quetano@planttheidea.com",
  "ava": {
    "failFast": true,
    "files": [
      "test/*.js"
    ],
    "require": [
      "@babel/register",
      "test/helpers/setup-browser-env.js"
    ],
    "sources": [
      "src/*.js"
    ],
    "verbose": true
  },
  "bugs": {
    "url": "https://github.com/planttheidea/fast-stringify/issues"
  },
  "description": "A blazing fast stringifier that safely handles circular objects",
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/plugin-proposal-class-properties": "^7.4.4",
    "@babel/plugin-proposal-json-strings": "^7.2.0",
    "@babel/plugin-transform-runtime": "^7.4.4",
    "@babel/preset-env": "^7.4.5",
    "@babel/preset-react": "^7.0.0",
    "@babel/register": "^7.4.4",
    "@babel/runtime": "^7.4.5",
    "ava": "^2.1.0",
    "babel-eslint": "^10.0.2",
    "babel-loader": "^8.0.6",
    "babel-preset-minify": "^0.5.0",
    "benchmark": "^2.1.4",
    "browser-env": "^3.2.6",
    "decircularize": "^1.0.0",
    "eslint": "^6.0.1",
    "eslint-config-airbnb-base": "^13.2.0",
    "eslint-friendly-formatter": "^4.0.1",
    "eslint-loader": "^2.2.0",
    "eslint-plugin-import": "^2.18.0",
    "fast-json-stable-stringify": "^2.0.0",
    "fs-extra": "^8.1.0",
    "html-webpack-plugin": "^3.2.0",
    "in-publish": "^2.0.0",
    "json-cycle": "^1.3.0",
    "json-stable-stringify": "^1.0.1",
    "json-stringify-safe": "^5.0.1",
    "nyc": "^14.1.1",
    "optimize-js-plugin": "^0.0.4",
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
    "rollup": "^1.16.4",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-uglify": "^6.0.2",
    "sinon": "^7.3.2",
    "webpack": "^4.35.2",
    "webpack-cli": "^3.3.5",
    "webpack-dev-server": "^3.7.2"
  },
  "homepage": "https://github.com/planttheidea/fast-stringify#readme",
  "keywords": [
    "stringify",
    "fast",
    "serialize",
    "json"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "module": "es/index.js",
  "name": "fast-stringify",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/planttheidea/fast-stringify.git"
  },
  "scripts": {
    "benchmark": "NODE_ENV=production BABEL_ENV=benchmark babel src --out-dir lib --no-comments && node benchmark/index.js",
    "build": "NODE_ENV=production rollup -c",
    "clean": "npm run clean:es && npm run clean:lib && npm run clean:dist",
    "clean:dist": "rimraf dist",
    "clean:es": "rimraf es",
    "clean:lib": "rimraf lib",
    "clean:mjs": "rimraf mjs",
    "copy:mjs": "npm run clean:mjs && node ./es-to-mjs.js",
    "dev": "NODE_ENV=development webpack-dev-server --colors --progress --config=webpack/webpack.config.dev.js",
    "dist": "npm run clean:dist && npm run build",
    "lint": "NODE_ENV=test eslint src --max-warnings 0",
    "lint:fix": "NODE_ENV=test eslint src --fix",
    "prepublish": "if in-publish; then npm run prepublish:compile; fi",
    "prepublish:compile": "npm run lint && npm run test:coverage && npm run transpile:lib && npm run transpile:es && npm run copy:mjs && npm run dist",
    "start": "npm run dev",
    "test": "NODE_PATH=. BABEL_ENV=test ava",
    "test:coverage": "nyc npm test",
    "test:watch": "npm test -- --watch",
    "transpile:es": "npm run clean:es && BABEL_ENV=es babel src --out-dir es",
    "transpile:lib": "npm run clean:lib && BABEL_ENV=lib babel src --out-dir lib"
  },
  "types": "index.d.ts",
  "version": "1.1.2"
}
