-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
66 lines (66 loc) · 1.6 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
{
"name": "tslint-actions",
"version": "1.0.0",
"description": "GitHub action that lints your code with TSLint (with Annotation support)",
"main": "index.js",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/tslint-actions.git"
},
"keywords": [
"github-actions",
"tslint",
"typescript",
"lint",
"linter",
"ci"
],
"author": "MooYeol Prescott Lee <mooyoul@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/tslint-actions/issues"
},
"homepage": "https://github.com/mooyoul/tslint-actions#readme",
"devDependencies": {
"@semantic-release/changelog": "3.0.6",
"@semantic-release/commit-analyzer": "6.3.3",
"@semantic-release/exec": "3.3.8",
"@semantic-release/git": "7.0.18",
"@semantic-release/release-notes-generator": "7.3.5",
"@types/common-tags": "1.8.4",
"@types/glob": "7.2.0",
"@types/node": "10.17.60",
"@vingle/commitlint-preset": "1.0.3",
"@vingle/tslint-preset": "1.0.1",
"chai": "4.5.0",
"husky": "3.1.0",
"semantic-release": "15.14.0"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^1.1.0",
"@octokit/rest": "^16.36.0",
"common-tags": "^1.8.0",
"glob": "^7.1.4",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@vingle/commitlint-preset"
]
}
}