forked from screwdriver-cd/notifications-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "screwdriver-notifications-slack",
"version": "3.0.0",
"description": "Sends slack notifications on certain build events",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "nyc --report-dir ./artifacts/coverage --reporter=lcov mocha --recursive --timeout 4000 --retries 1 --exit --allow-uncaught true --color true",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "[email protected]:screwdriver-cd/notifications-slack.git"
},
"homepage": "https://github.com/screwdriver-cd/notifications-slack",
"bugs": "https://github.com/screwdriver-cd/screwdriver/issues",
"keywords": [
"screwdriver",
"yahoo"
],
"license": "BSD-3-Clause",
"author": "Dao Lam <[email protected]>",
"contributors": [
"Dao Lam <[email protected]>",
"Darren Matsumoto <[email protected]>",
"Jithin Emmanuel <[email protected]>",
"Min Zhang <[email protected]>",
"Peter Peterson <[email protected]>",
"Philip Scott <[email protected]>",
"St. John Johnson <[email protected]",
"Tiffany Kyi <[email protected]>"
],
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-screwdriver": "^3.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sinon": "^4.5.0"
},
"dependencies": {
"@hapi/hapi": "^20.0.0",
"@hapi/hoek": "^9.0.4",
"@slack/client": "^4.3.1",
"joi": "^17.2.1",
"mockery": "^2.1.0",
"request": "^2.87.0",
"samsam": "^1.3.0",
"screwdriver-data-schema": "^20.6.0",
"screwdriver-notifications-base": "^3.0.0"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
}
}