{
  "name": "passwordmeter",
  "description": "Password security checker function based on http://www.passwordmeter.com/",
  "main": "dist/index.js",
  "scripts": {
    "commit": "git-cz",
    "check-coverage": "nyc check-coverage --statements 99 --branches 99 --functions 99 --lines 99",
    "report-coverage": "cat ./coverage/lcov.info | codecov",
    "watch:test": "npm t -- --watch",
    "cover": "nyc --reporter=lcov npm t",
    "test": "mocha src/index.test.js --compilers js:babel-register",
    "prebuild": "rimraf dist",
    "build": "npm-run-all --parallel build:*",
    "build:main": "babel --out-dir dist --ignore *.test.js src",
    "build:umd": "webpack --output-filename index.umd.js",
    "build:umd.min": "webpack --output-filename index.umd.min.js -p",
    "semantic-release": "semantic-release pre && npm publish && publish-latest && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sneas/passwordmeter.git"
  },
  "keywords": [
    "passwordmeter",
    "password",
    "strength"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "author": "Dima Snisarenko <snisarenkodima@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sneas/passwordmeter/issues"
  },
  "homepage": "https://github.com/sneas/passwordmeter",
  "devDependencies": {
    "babel-cli": "6.14.0",
    "babel-core": "6.14.0",
    "babel-loader": "6.2.5",
    "babel-preset-es2015": "6.14.0",
    "babel-preset-stage-2": "6.13.0",
    "babel-register": "6.14.0",
    "chai": "3.5.0",
    "codecov": "1.0.1",
    "commitizen": "2.8.6",
    "cz-conventional-changelog": "1.2.0",
    "ghooks": "1.3.2",
    "json-loader": "0.5.4",
    "mocha": "3.0.2",
    "npm-run-all": "3.1.0",
    "nyc": "8.1.0",
    "publish-latest": "1.1.2",
    "rimraf": "2.5.4",
    "semantic-release": "^4.3.5",
    "webpack": "1.13.2"
  },
  "config": {
    "ghooks": {
      "pre-commit": "npm run test"
    },
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "babel": {
    "presets": [
      "es2015",
      "stage-2"
    ]
  },
  "version": "1.3.5"
}