{
  "name": "universal-observer",
  "version": "1.0.1",
  "description": "Observe deep changes in any object, array, map, set, date, ...",
  "main": "./lib/universal-observer.js",
  "scripts": {
    "clean": "rimraf lib",
    "transpile": "babel --source-maps inline src --out-dir lib",
    "build": "npm run clean && npm run transpile",
    "prepublish": "npm run build",
    "commit": "git-cz",
    "commita": "git add . && git status -s && git-cz",
    "lint": "eslint src test",
    "cover": "babel-node $(npm bin)/isparta cover _mocha -- \"test/{unit,integration}/**/*.test.js\"",
    "coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
    "test": "mocha \"test/{unit,integration}/**/*.test.js\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/couralex/universal-observer.git"
  },
  "keywords": [
    "observe",
    "proxy",
    "deep",
    "synchronous",
    "changes"
  ],
  "author": "couralex <couralex@courpron.net>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/couralex/universal-observer/issues"
  },
  "homepage": "https://github.com/couralex/universal-observer#readme",
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "devDependencies": {
    "babel-cli": "^6.18.0",
    "babel-preset-node6": "^11.0.0",
    "chai": "^3.5.0",
    "commitizen": "^2.8.6",
    "coveralls": "^2.11.15",
    "cz-conventional-changelog": "^1.2.0",
    "eslint": "^3.12.0",
    "isparta": "^4.0.0",
    "mocha": "^3.2.0",
    "mocha-lcov-reporter": "^1.2.0",
    "rimraf": "^2.5.4"
  }
}
