{
  "name": "@wessberg/codeanalyzer",
  "version": "1.0.139",
  "description": "A service that can analyze your code in great detail ahead of time.",
  "scripts": {
    "clean:dist": "rm -r -f dist",
    "clean:compiled": "rm -r -f compiled",
    "clean": "npm run clean:dist && npm run clean:compiled",
    "rollup": "rollup -c rollup.config.js",
    "rollup:test": "rollup -c rollup.test.config.js",
    "prebuild": "npm run clean",
    "build": "npm run rollup",
    "build:prod": "NODE_ENV=production npm run rollup",
    "tslint": "tslint -c tslint.json -p tsconfig.json",
    "validate": "npm run tslint && npm run test",
    "pretest": "npm run clean:compiled && npm run rollup:test",
    "test": "NODE_ENV=TEST ava --fail-fast",
    "posttest": "npm run clean:compiled",
    "precommit": "npm run tslint && exit 0",
    "prepush": "npm run validate && exit 0",
    "publish:major": "npm run validate && npm run build:prod && npm version major && git push && npm publish",
    "publish:minor": "npm run validate && npm run build:prod && npm version minor && git push && npm publish",
    "publish:patch": "npm run validate && npm run build:prod && npm version patch && git push && npm publish",
    "update": "ncu -ua && npm update && npm install"
  },
  "keywords": [
    "ast",
    "analyzer",
    "resolve",
    "metadata",
    "language service",
    "typescript",
    "code quality"
  ],
  "devDependencies": {
    "@wessberg/rollup-plugin-di": "^1.0.86",
    "@wessberg/rollup-plugin-ts": "0.0.40",
    "@wessberg/ts-config": "^0.0.30",
    "ava": "^0.25.0",
    "husky": "latest",
    "npm-check-updates": "^2.14.2",
    "rollup": "0.66.0",
    "tslint": "^5.11.0"
  },
  "dependencies": {
    "@types/node": "^10.10.1",
    "@wessberg/di": "^1.1.0",
    "@wessberg/moduleutil": "0.0.26",
    "@wessberg/pathutil": "0.0.10",
    "@wessberg/stringutil": "^1.0.17",
    "@wessberg/typescript-ast-util": "0.0.48",
    "@wessberg/typescript-language-service": "0.0.48",
    "tslib": "^1.9.3",
    "typescript": "^3.0.3"
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/es2015/index.js",
  "browser": "./dist/es2015/index.js",
  "types": "./dist/es2015/index.d.ts",
  "typings": "./dist/es2015/index.d.ts",
  "es2015": "./dist/es2015/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/wessberg/CodeAnalyzer.git"
  },
  "bugs": {
    "url": "https://github.com/wessberg/CodeAnalyzer/issues"
  },
  "author": {
    "name": "Frederik Wessberg",
    "email": "frederikwessberg@hotmail.com",
    "url": "https://github.com/wessberg"
  },
  "engines": {
    "node": ">=9.0.0"
  },
  "license": "MIT"
}
