{ "name": "fork-ts-checker-webpack-plugin", "version": "0.4.15", "description": "Runs typescript type checker and linter on separate process.", "main": "lib/index.js", "types": "lib/types/index.d.ts", "files": [ "lib" ], "scripts": { "build": "tsc --version && tsc --project \"./src\"", "test:unit": "mocha -R spec ./test/unit --exit", "test:integration": "mocha -R spec ./test/integration --exit && rimraf tmp", "test": "npm run build && npm run test:unit && npm run test:integration", "test:watch": "mocha -R spec --watch ./test/unit", "test:coverage": "rimraf coverage && istanbul cover -root lib --include-all-sources mocha -- -R spec ./test/unit ./test/integration", "lint": "tslint --project src/tsconfig.json && eslint ./test", "lint:fix": "tslint --project src/tsconfig.json --fix && eslint ./test --fix" }, "repository": { "url": "https://github.com/Realytics/fork-ts-checker-webpack-plugin.git", "type": "git" }, "keywords": [ "webpack", "plugin", "typescript", "type", "checker", "linter", "fork", "fast", "speed", "ts-loader", "awesome-typescript-loader", "increment", "webpack-plugin" ], "engines": { "node": ">=6.11.5" }, "author": "Piotr Oleś ", "contributors": [ "Piotr Oleś (https://github.com/piotr-oles)", "John Reilly (https://blog.johnnyreilly.com)" ], "license": "MIT", "bugs": { "url": "https://github.com/Realytics/fork-ts-checker-webpack-plugin/issues" }, "devDependencies": { "@types/babel-code-frame": "^6.20.1", "@types/chokidar": "^1.7.5", "@types/lodash": "^4.14.117", "@types/micromatch": "^3.1.0", "@types/minimatch": "^3.0.1", "@types/node": "^8.0.26", "@types/resolve": "0.0.4", "@types/webpack": "^4.4.9", "chai": "^3.5.0", "css-loader": "^0.28.7", "eslint": "^5.7.0", "husky": "^1.1.2", "istanbul": "^0.4.5", "lint-staged": "^7.3.0", "mocha": "^5.2.0", "mock-fs": "^4.3.0", "mock-require": "^2.0.2", "prettier": "^1.14.3", "rimraf": "^2.5.4", "sinon": "^2.3.1", "ts-loader": "^3.4.0", "tslint": "^5.11.0", "tslint-config-prettier": "^1.15.0", "typescript": "^3.0.1", "vue": "^2.5.16", "vue-class-component": "^6.1.1", "vue-loader": "^13.5.0", "vue-template-compiler": "^2.5.16", "webpack": "^3.10.0" }, "peerDependencies": { "tslint": "^4.0.0 || ^5.0.0", "typescript": "^2.1.0 || ^3.0.0", "webpack": "^2.3.0 || ^3.0.0 || ^4.0.0" }, "dependencies": { "babel-code-frame": "^6.22.0", "chalk": "^2.4.1", "chokidar": "^2.0.4", "lodash": "^4.17.11", "micromatch": "^3.1.10", "minimatch": "^3.0.4", "resolve": "^1.5.0", "tapable": "^1.0.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "concurrent": false, "linters": { "*.js": [ "eslint --fix" ], "*.ts": [ "tslint --fix" ], "*.{js,ts}": [ "prettier --write", "git add" ] } } }