forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "tslint",
"version": "4.0.0-dev",
"description": "An extensible static analysis linter for the TypeScript language",
"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": {
"clean": "npm-run-all -p clean:core clean:test",
"clean:core": "rimraf lib",
"clean:test": "rimraf build && rimraf test/config/node_modules",
"docs": "node scripts/buildDocs.js",
"compile": "npm-run-all -p compile:core compile:test -s compile:scripts",
"compile:core": "tsc -p src",
"compile:scripts": "tsc -p scripts",
"compile:test": "tsc -p test",
"lint": "npm-run-all -p lint:core lint:test",
"lint:core": "tslint src/**/*.ts",
"lint:test": "tslint test/**/*.ts -e test/**/*.test.ts",
"test": "npm-run-all test:pre -p test:bin test:mocha test:rules",
"test:pre": "cd ./test/config && npm install",
"test:bin": "./test/check-bin.sh &> /dev/null",
"test:mocha": "mocha --reporter spec --colors build/test/**/*Tests.js build/test/assert.js",
"test:rules": "node ./build/test/ruleTestRunner.js",
"verify": "npm-run-all clean compile lint test docs"
},
"dependencies": {
"colors": "^1.1.2",
"diff": "^3.0.1",
"findup-sync": "~0.3.0",
"glob": "^7.1.1",
"optimist": "~0.6.0",
"resolve": "^1.1.7",
"rimraf": "^2.5.4",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/colors": "^0.6.33",
"@types/diff": "0.0.31",
"@types/findup-sync": "^0.3.29",
"@types/glob": "^5.0.30",
"@types/js-yaml": "^3.5.28",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"@types/optimist": "0.0.29",
"@types/resolve": "0.0.4",
"@types/underscore": "^1.7.33",
"@types/underscore.string": "0.0.30",
"chai": "^3.0.0",
"js-yaml": "^3.6.1",
"mocha": "^3.1.0",
"npm-run-all": "^3.1.0",
"tslint": "latest",
"tslint-test-config-non-relative": "file:test/external/tslint-test-config-non-relative",
"typescript": "2.0.3"
},
"peerDependencies": {
"typescript": ">=1.7.3"
},
"license": "Apache-2.0",
"typescript": {
"definition": "lib/tslint.d.ts"
}
}