This repository has been archived by the owner on Dec 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
83 lines (83 loc) · 1.89 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
77
78
79
80
81
82
83
{
"name": "angular-tslint-rules",
"version": "0.0.0",
"description": "Shared TSLint & codelyzer rules to enforce a consistent code style for Angular development",
"repository": {
"type": "git",
"url": "https://github.com/fulls1z3/angular-tslint-rules.git"
},
"keywords": [
"linting-rules",
"tslint",
"frontend",
"angular"
],
"author": {
"name": "Burak Tasci",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fulls1z3/angular-tslint-rules/issues"
},
"homepage": "https://github.com/fulls1z3/angular-tslint-rules#readme",
"scripts": {
"ci:before": "greenkeeper-lockfile-update",
"ci:after": "greenkeeper-lockfile-upload"
},
"main": "./tslint.json",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"husky": "^3.1.0",
"semantic-release": "^15.13.31"
},
"peerDependencies": {
"codelyzer": "^5.0.0",
"tslint": ">=5.20.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branch": "master",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": "./release-rules.js",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "."
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
]
]
}
}