-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "tslint-loader",
"version": "3.5.4",
"description": "tslint loader for webpack",
"main": "index.js",
"scripts": {
"deploy": "np --skip-cleanup",
"lint": "eslint --ext .js .",
"mocha": "mocha ./test/loader.spec.js --timeout 5000",
"test": "npm run mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/wbuchwalter/tslint-loader"
},
"keywords": [
"tslint",
"typescript",
"webpack",
"loader",
"linting"
],
"author": "William Buchwalter",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbuchwalter/tslint-loader/issues"
},
"homepage": "https://github.com/wbuchwalter/tslint-loader",
"peerDependencies": {
"tslint": ">=4.0.0"
},
"dependencies": {
"loader-utils": "^1.0.2",
"mkdirp": "^0.5.1",
"object-assign": "^4.1.1",
"rimraf": "^2.4.4",
"semver": "^5.3.0"
},
"devDependencies": {
"awesome-typescript-loader": "^3.0.3",
"chai": "^3.5.0",
"es6-promisify": "^5.0.0",
"eslint": "^3.15.0",
"mocha": "^3.2.0",
"np": "^2.12.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"webpack": "^2.2.1"
}
}