forked from positive-js/tslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.23 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
{
"name": "@ptsecurity/tslint-config",
"version": "0.5.0",
"author": "Positive Technologies",
"description": "Positive Technologies TSLint rules.",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/positive-js/tslint-config.git"
},
"keywords": [
"tslint",
"custom-rules",
"rules",
"lint",
"linting",
"linter",
"tslint-plugin"
],
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"commitmsg": "commitlint -x=./commitlint.config.js -e $GIT_PARAMS",
"test:rules": "tslint -r ./dist/@ptsecurity/tslint-config/rules --test ./test/rules/*/*",
"build:tslint": "ts-node ./tools/index.ts",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 --config ./tools/changelog/config.js"
},
"dependencies": {
"codelyzer": "4.0.1",
"tslib": "1.8.1",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1",
"tslint-microsoft-contrib": "5.0.1",
"tsutils": "2.13.0"
},
"devDependencies": {
"@angular/common": "5.1.0",
"@angular/compiler": "5.1.0",
"@angular/core": "5.1.0",
"@angular/platform-browser": "5.1.0",
"@angular/platform-browser-dynamic": "5.1.0",
"@commitlint/cli": "6.2.0",
"@commitlint/config-conventional": "6.1.3",
"@ptsecurity/commitlint-config": "0.1.3",
"@types/fs-extra": "4.0.5",
"@types/node": "8.0.57",
"@types/rimraf": "2.0.2",
"conventional-changelog": "1.1.7",
"conventional-changelog-cli": "1.3.5",
"fs-extra": "4.0.3",
"husky": "0.14.3",
"npm-run-all": "4.1.2",
"ora": "1.3.0",
"rimraf": "2.6.2",
"rxjs": "^5.5.2",
"ts-node": "3.3.0",
"typescript": "2.6.2",
"zone.js": "^0.8.18"
},
"peerDependencies": {
"@angular/compiler": "^5.0.1",
"@angular/core": "^5.0.1",
"@angular/platform-browser-dynamic": "^5.0.1",
"@angular/platform-browser": "^5.0.1",
"@angular/common": "^5.0.1",
"tslint": "^5.8.0",
"rxjs": "^5.5.2",
"zone.js": "^0.8.18"
}
}