{
  "name": "@typed/assertions",
  "description": "Well-typed functional assertion library",
  "repository": "https://github.com/TylorS167/typed-assertions",
  "version": "1.1.0",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "typings": "lib/index.d.ts",
  "jsnext:main": "lib.es2015/index.js",
  "module": "lib.es2015/index.js",
  "author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@typed/test": "1.5.0",
    "@types/node": "7.0.29",
    "conventional-changelog-cli": "1.3.1",
    "dox": "0.9.0",
    "gaze-run-interrupt": "1.0.1",
    "husky": "0.14.3",
    "lint-staged": "4.0.1",
    "marked": "0.3.6",
    "prettier": "1.5.2",
    "rimraf": "2.6.1",
    "ts-node": "3.2.0",
    "typescript": "2.4.1",
    "validate-commit-message": "3.0.1"
  },
  "dependencies": {
    "167": "0.36.0",
    "assertion-error-diff": "^1.0.0"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript",
      "git add"
    ]
  },
  "scripts": {
    "build": "npm run build:commonjs && npm run build:es2015",
    "build:commonjs": "tsc -P .config/tsconfig.commonjs.json",
    "build:es2015": "tsc -P .config/tsconfig.es2015.json",
    "changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 -p angular && git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): amend changelog'",
    "commitmsg": "validate-commit-msg",
    "docs": "node .scripts/docs.js",
    "postversion": "npm run changelog && git push origin master --tags && npm publish --access=public",
    "precommit": "lint-staged",
    "preversion": "npm test && npm run build",
    "release:major": "npm version major -m 'chore(package): v%s'",
    "release:minor": "npm version minor -m 'chore(package): v%s'",
    "test": "npm run test:lint && npm run test:unit",
    "test:lint": "prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript 'src/*.ts' 'src/**/*.ts'",
    "test:unit": "typed-test 'src/*.test.ts' 'src/**/*.test.ts'",
    "test:watch": "node .scripts/watch.js"
  }
}
