{
  "name": "boogy",
  "version": "1.2.1",
  "description": "Compare objects and check if they are equal according to a recursive equality algorithm. Similiar to NodeJS core module deepEqual in loose mode",
  "main": "dist/boogy.min.js",
  "jsnext:main": "dist/boogy.mjs",
  "module": "dist/boogy.mjs",
  "scripts": {
    "build": "npm run build:dist && npm run build:min",
    "prebuild": "tslint src/**/*.ts && tsc --sourceMap --skipLibCheck -t es2015",
    "pretest": "tsc --sourceMap --skipLibCheck -t es2015",
    "test": "mocha test/specs/**/*.ts",
    "build:dist": "rollup -c",
    "build:min": "rollup -c rollup.config.minified.js",
    "watch:test": "npm run pretest && mocha -w test/specs/**/*.ts",
    "watch:build": "tsc -t es2015 --skipLibCheck -p ./tsconfig.json -w"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kflash/boogy.git"
  },
  "author": "KFlash",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kflash/boogy/issues"
  },
  "keywords": [
    "node",
    "nodeJS",
    "deepEqual",
    "deep",
    "deeper",
    "deepest",
    "strict",
    "ecma",
    "es2015",
    "es2016",
    "es7",
    "loose",
    "match",
    "shallow",
    "equal",
    "object",
    "equality",
    "compare",
    "comparison"
  ],
  "homepage": "https://github.com/kflash/boogy#readme",
  "devDependencies": {
    "@types/chai": "^3.4.32",
    "@types/mocha": "^2.2.31",
    "@types/node": "^6.0.38",
    "chai": "3.5.0",
    "mocha": "3.0.2",
    "rollup": "0.35.6",
    "rollup-plugin-buble": "0.13.0",
    "rollup-plugin-uglify": "1.0.1",
    "rollup-plugin-typescript": "0.8.1",
    "ts-node": "^1.3.0",
    "tslint": "next",
    "typescript": "next"
  }
}
