-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
106 lines (106 loc) · 2.42 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "semantic-release-slack-bot",
"version": "0.0.0-semantically-released",
"description": "A slack bot for semantic-release notifying release statuses",
"main": "index.js",
"private": false,
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">=18.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliuscc/semantic-release-slack-bot.git"
},
"keywords": [
"semantic-release",
"slack",
"bot",
"slack-bot",
"release-notification",
"release",
"ci"
],
"contributors": [
"Julius Celik <[email protected]>",
"Hannes Rabo <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/juliuscc/semantic-release-slack-bot/issues"
},
"homepage": "https://github.com/juliuscc/semantic-release-slack-bot#readme",
"scripts": {
"commit": "git-cz",
"lint": "eslint lib index.js",
"prettier": "prettier --write --list-different '**/*.@(md|js?(on))'",
"semantic-release": "semantic-release",
"test": "mocha"
},
"dependencies": {
"@semantic-release/error": "^2.2.0",
"micromatch": "4.0.8",
"node-fetch": "^2.3.0",
"slackify-markdown": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"prettier": "^1.16.4",
"proxyquire": "^2.1.3",
"semantic-release": "^20.1.0",
"sinon": "^9.2.1"
},
"peerDependencies": {
"semantic-release": ">=11.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"standard",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": 2
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}