{
  "name": "newtondev-mrz-parser",
  "version": "1.1.0",
  "description": "Parses the MRZ found of Passport and Travel Documents and returns the data in a human readable form.",
  "main": "src/index.js",
  "scripts": {
    "prebuild": "rm -rf dist && mkdir dist",
    "build": "babel --presets es2015 src/index.js -o dist/index.js",
    "commit": "git-cz",
    "check-coverage": "istanbul check-coverage --statements 100 --branches 95 --functions 100 --lines 100",
    "report-coverage": "cat ./coverage/lcov.info | codecov",
    "test": "mocha src/index.test.js -w --compilers js:babel-core/register",
    "test:single": "istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js --compilers js:babel-core/register",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/newtondev/mrz-parser.git"
  },
  "keywords": [
    "mrz",
    "parser",
    "passport",
    "travel",
    "documents"
  ],
  "author": "Craig Newton <newtondev@gmail.com> (http://newtondevstudio.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/newtondev/mrz-parser/issues"
  },
  "homepage": "https://github.com/newtondev/mrz-parser#readme",
  "devDependencies": {
    "babel-cli": "6.7.5",
    "babel-core": "6.7.6",
    "babel-preset-es2015": "6.6.0",
    "chai": "3.5.0",
    "codecov.io": "0.1.6",
    "commitizen": "2.7.6",
    "cz-conventional-changelog": "1.1.5",
    "ghooks": "1.2.1",
    "istanbul": "1.0.0-alpha.2",
    "mocha": "2.4.5",
    "semantic-release": "^4.3.5"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "ghooks": {
      "pre-commit": "npm run test:single && npm run check-coverage"
    }
  },
  "dependencies": {}
}