forked from TypeStrong/fork-ts-checker-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "fork-ts-checker-webpack-plugin",
"version": "1.1.0",
"description": "Runs typescript type checker and linter on separate process.",
"main": "lib/index.js",
"types": "lib/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",
"watch": "tsc --version && tsc --project \"./src\" --watch"
},
"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ś <piotrek.oles@gmail.com>",
"contributors": [
"Piotr Oleś <piotrek.oles@gmail.com> (https://github.com/piotr-oles)",
"John Reilly <johnny_reilly@hotmail.com> (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/micromatch": "^3.1.0",
"@types/minimatch": "^3.0.1",
"@types/node": "^8.10.38",
"@types/semver": "^5.5.0",
"@types/webpack": "^4.4.19",
"chai": "^4.2.0",
"css-loader": "0.28.11",
"eslint": "^5.7.0",
"husky": "^1.1.4",
"istanbul": "^0.4.5",
"lint-staged": "^8.0.5",
"mocha": "^5.2.0",
"mock-fs": "^4.3.0",
"mock-require": "^3.0.2",
"prettier": "^1.14.3",
"rimraf": "^2.5.4",
"sinon": "^7.1.1",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.0.1",
"unixify": "^1.0.0",
"vue": "^2.5.16",
"vue-class-component": "^6.1.1",
"vue-loader": "^15.2.4",
"vue-template-compiler": "^2.5.16",
"webpack": "^5.0.0-alpha.0"
},
"dependencies": {
"babel-code-frame": "^6.22.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"micromatch": "^3.1.10",
"minimatch": "^3.0.4",
"semver": "^5.6.0",
"tapable": "^1.0.0",
"worker-rpc": "^0.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"concurrent": false,
"linters": {
"*.js": [
"eslint --fix"
],
"*.ts": [
"tslint --fix"
],
"*.{js,ts}": [
"prettier --write",
"git add"
]
}
}
}