{
  "name": "tsutils",
  "version": "2.13.0",
  "description": "utilities for working with typescript's AST",
  "scripts": {
    "compile": "rm -rf {,util,typeguard,test/**}/*.js; tsc -p .",
    "lint": "tslint -p . -e 'test/rules/*/*Rule.ts'",
    "lint:fix": "tslint --fix -p ./tsconfig.json",
    "test": "mocha test/*Tests.js; tslint --test test/rules/*/tslint.json",
    "verify": "npm run compile && npm run lint && npm run coverage",
    "prepublishOnly": "npm run verify",
    "coverage": "rm -rf coverage .nyc_output && nyc npm test",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ajafff/tsutils"
  },
  "keywords": [
    "typescript",
    "ts",
    "ast",
    "typeguard",
    "utils",
    "helper",
    "node"
  ],
  "author": "Klaus Meinhardt",
  "license": "MIT",
  "devDependencies": {
    "@types/chai": "^3.5.2",
    "@types/mocha": "^2.2.41",
    "@types/node": "^7.0.18",
    "chai": "^3.5.0",
    "coveralls": "^2.13.1",
    "github-release-from-changelog": "^1.2.1",
    "mocha": "^3.4.1",
    "nyc": "^11.0.3",
    "tslint": "^5.8.0",
    "tslint-consistent-codestyle": "^1.10.0",
    "typescript": "^2.6.2"
  },
  "peerDependencies": {
    "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >= 2.4.0-dev || >= 2.5.0-dev || >= 2.6.0-dev || >= 2.7.0-dev || >= 2.8.0-dev"
  },
  "dependencies": {
    "tslib": "^1.7.1"
  }
}