-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "pr-labeler-action",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"format": "prettier --write **/*.ts",
"format:ci": "prettier --check **/*.ts",
"lint": "eslint '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/pr-labeler-action.git"
},
"author": "Netlify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/pr-labeler-action/issues"
},
"homepage": "https://github.com/netlify/pr-labeler-action#readme",
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"prettier": "^2.0.5",
"ts-loader": "^9.0.0",
"typescript": "^4.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}