-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "@ptsecurity/tslint-config",
"version": "2.0.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": ">= 12.0.0"
},
"scripts": {
"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"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"rxjs-tslint-rules": "^4.34.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@ptsecurity/commitlint-config": "^1.0.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^12.12.54",
"@types/rimraf": "^3.0.0",
"conventional-changelog": "^3.1.23",
"conventional-changelog-cli": "^2.1.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"ora": "^5.0.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tsutils": "^3.17.1",
"typescript": "~3.8.3"
},
"peerDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.0.8"
}
}