-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "tslint-rules-valorsoft",
"version": "1.0.0",
"description": "Custom rules for tslint.",
"main": "rules/index.js",
"scripts": {
"lint": "tslint -p ./tsconfig.json",
"test": "npm run build && tslint --test ./tests/*/*",
"test-coverage": "nyc npm run test",
"build": "rm -rf ./rules && tsc -p tsconfig.build.json",
"precommit": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/valor-software/tslint-rules-valorsoft.git"
},
"keywords": [
"tslint",
"tslint-extension",
"tslint-plugin",
"tslint-rules"
],
"author": "Dmitriy Shekhovtsov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/valor-software/tslint-rules-valorsoft/issues"
},
"homepage": "https://github.com/valor-software/tslint-rules-valorsoft#readme",
"types": "rules/index.d.ts",
"dependencies": {
"tslib": "1.9.0",
"tsutils": "2.21.2"
},
"devDependencies": {
"@angular/common": "5.2.6",
"@angular/compiler": "5.2.6",
"@angular/core": "5.2.6",
"@angular/platform-browser": "5.2.6",
"@angular/platform-browser-dynamic": "5.2.6",
"@types/node": "9.4.6",
"codelyzer": "4.1.0",
"nyc": "11.4.1",
"rxjs": "5.5.6",
"tslint": "5.8.0",
"typescript": "2.7.2",
"zone.js": "0.8.20"
},
"peerDependencies": {
"tslint": "5.9.1",
"codelyzer": "4.1.0"
},
"engines": {
"node": ">= 4"
},
"files": [
"/rules/**/*"
]
}