-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 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
{
"name": "@mcmath/tslint-rules",
"version": "1.1.0",
"description": "Custom rules for TSLint",
"main": "index.json",
"keywords": [
"tslint",
"tslint-rules",
"linter",
"typescript"
],
"scripts": {
"build": "rimraf rules && tsc",
"test": "rimraf rules && tsc && tslint src && tslint -r rules --test \"test/rules/*/*\" && jsonlint index.json -q"
},
"engines": {
"node": ">=4.0"
},
"publishConfig": {
"access": "public"
},
"author": "Akim McMath <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mcmath/tslint-rules.git"
},
"bugs": {
"url": "https://github.com/mcmath/tslint-rules/issues"
},
"homepage": "https://github.com/mcmath/tslint-rules#readme",
"peerDependencies": {
"typescript": "2",
"tslint": "5"
},
"dependencies": {
"tslib": "^1.6.0"
},
"devDependencies": {
"@mcmath/tslint-config": "^1.0.2",
"jsonlint": "^1.6.2",
"rimraf": "^2.6.1",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
}
}