-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "github-to-slack-notification",
"version": "1.0.0",
"description": "## About Notification script from github to slack",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starfish719/github-to-slack-notification.git"
},
"author": "starfish719 (https://github.com/starfish719)",
"license": "MIT",
"bugs": {
"url": "https://github.com/starfish719/github-to-slack-notification/issues"
},
"homepage": "https://github.com/starfish719/github-to-slack-notification#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^3.4.1",
"git-cz": "^4.7.6",
"husky": "^8.0.3",
"jest": "^27.4.3",
"lint-staged": "^13.1.2",
"prettier": "^2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}