{
  "name": "classification-manager",
  "homepage": "https://github.com/stevethedev/std-classifier",
  "version": "1.0.10",
  "description": "Library for working with document classifications, based on DoD Guidelines",
  "main": "index.js",
  "types": "./dist/classifier.d.ts",
  "author": "Steven Jimenez <steven@stevethedev.com>",
  "license": "MIT",
  "scripts": {
    "build": "npm run build:javascript && npm run build:dts",
    "build:javascript": "rollup -c ./rollup.config.js",
    "build:dts": "dts-bundle-generator -o ./dist/classifier.d.ts ./src/main.ts",
    "lint": "npm run lint:tsc && npm run lint:tslint",
    "lint:tsc": "node node_modules/.bin/tsc --noEmit",
    "lint:tslint": "node node_modules/.bin/tslint -c tslint.json -p .",
    "test": "tsc --noEmit && nyc ava",
    "coverage": "npm run coverage:coveralls && npm run coverage:codacy",
    "coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
    "coverage:codacy": "nyc report --reporter=text-lcov | codacy-coverage -p .",
    "coverage:html": "nyc report --reporter=html && http-server ./coverage",
    "preversion": "npm run test",
    "version": "npm run build && git add .",
    "postversion": "git push && git push --tags"
  },
  "dependencies": {
    "date-fns": "2.5.0"
  },
  "devDependencies": {
    "ava": "2.4.0",
    "codacy-coverage": "3.4.0",
    "coveralls": "3.0.7",
    "dts-bundle-generator": "3.2.0",
    "http-server": "0.11.1",
    "nyc": "14.1.1",
    "rollup": "1.24.0",
    "rollup-plugin-typescript2": "0.24.3",
    "ts-node": "8.4.1",
    "tslint": "5.20.0",
    "typescript": "3.6.4"
  },
  "ava": {
    "compileEnhancements": false,
    "extensions": [
      "ts"
    ],
    "require": [
      "ts-node/register/transpile-only"
    ],
    "files": [
      "test/**/*.js"
    ],
    "cache": false
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "**/*.d.ts"
    ],
    "include": [
      "src/**/*.ts",
      "src/**.ts",
      "src/*.ts"
    ],
    "all": true
  }
}
