forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.06 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
{
"name": "tslint",
"version": "3.3.0",
"description": "a static analysis linter for TypeScript",
"bin": {
"tslint": "./bin/tslint"
},
"main": "./lib/tslint",
"typings": "./lib/tslint",
"repository": {
"type": "git",
"url": "https://github.com/palantir/tslint.git"
},
"keywords": [
"cli",
"typescript",
"linter"
],
"scripts": {
"test": "grunt"
},
"dependencies": {
"colors": "^1.1.2",
"diff": "^2.2.1",
"findup-sync": "~0.2.1",
"glob": "^6.0.1",
"optimist": "~0.6.0",
"underscore.string": "~3.1.1"
},
"devDependencies": {
"chai": "^3.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.9",
"grunt-contrib-clean": "^0.6.0",
"grunt-jscs": "^1.8.0",
"grunt-mocha-test": "^0.12.7",
"grunt-run": "^0.3.0",
"grunt-ts": "^5.1.0",
"grunt-tslint": "latest",
"mocha": "^2.2.5",
"tslint": "latest",
"typescript": "latest"
},
"peerDependencies": {
"typescript": ">=1.7.3"
},
"license": "Apache-2.0",
"typescript": {
"definition": "lib/tslint.d.ts"
}
}