forked from TypeStrong/fork-ts-checker-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.28 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
{
"name": "fork-ts-checker-webpack-plugin",
"version": "0.2.9",
"description": "Runs typescript type checker and linter on separate process.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --version && tsc --project \"./src\"",
"test:unit": "mocha -R spec ./test/unit",
"test:integration": "mocha -R spec ./test/integration && 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": "eslint ./lib ./test",
"lint:fix": "eslint ./lib ./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"
],
"author": "Piotr Oleś <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Realytics/fork-ts-checker-webpack-plugin/issues"
},
"devDependencies": {
"@types/babel-code-frame": "^6.20.1",
"@types/chalk": "^0.4.31",
"@types/chokidar": "^1.7.2",
"@types/lodash.endswith": "^4.2.3",
"@types/lodash.isfunction": "^3.0.3",
"@types/lodash.isstring": "^4.0.3",
"@types/lodash.startswith": "^4.2.3",
"@types/minimatch": "^3.0.1",
"@types/node": "^8.0.26",
"@types/webpack": "^3.0.10",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"mock-fs": "^4.3.0",
"mock-require": "^2.0.2",
"rimraf": "^2.5.4",
"sinon": "^2.3.1",
"ts-loader": "^2.1.0",
"tslint": "^5.0.0",
"typescript": "^2.1.0",
"webpack": "^3.0.0"
},
"peerDependencies": {
"typescript": "^2.1.0",
"webpack": "^2.3.0 || ^3.0.0"
},
"dependencies": {
"babel-code-frame": "^6.22.0",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"lodash.endswith": "^4.2.1",
"lodash.isfunction": "^3.0.8",
"lodash.isstring": "^4.0.1",
"lodash.startswith": "^4.2.1",
"minimatch": "^3.0.4"
}
}