-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "@schibsted/serverless-slack-deploy-notification",
"version": "0.4.2",
"description": "Serverless plugin that sends a slack message on deployment start and finish",
"main": "index.js",
"scripts": {
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"prepare": "is-ci || husky install",
"prettier": "prettier --write",
"release": "release-it"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.json": [
"npm run prettier"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/schibsted/serverless-slack-deploy-notification.git"
},
"keywords": [
"serverless",
"slack",
"deploy",
"deployment",
"notification"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/schibsted/serverless-slack-deploy-notification/issues"
},
"homepage": "https://github.com/schibsted/serverless-slack-deploy-notification#readme",
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.25.9",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@release-it/conventional-changelog": "5.1.1",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "4.2.1",
"http-errors": "2.0.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"release-it": "15.11.0"
},
"dependencies": {
"@slack/web-api": "^6.5.1",
"dayjs": "^1.10.7",
"ramda": "^0.30.0",
"slackify-markdown": "^4.3.1"
}
}