This repository was archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 KB
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": "github-slack-bot",
"description": "Slack bot for your team which integrates with Github",
"version": "0.0.0-dev",
"author": "Jeff Fairley",
"bugs": "https://github.com/jfairley/github-slack-bot/issues",
"dependencies": {
"@octokit/rest": "16.15.0",
"@octokit/webhooks": "5.1.2",
"bluebird": "3.5.1",
"botkit": "0.6.14",
"lodash": "4.17.10",
"moment": "2.22.2",
"ts-node": "8.0.2"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/prompt-cli": "7.5.0",
"@octokit/webhooks-definitions": "1.1.2",
"@types/bluebird": "3.5.20",
"@types/jest": "24.0.5",
"@types/lodash": "4.14.110",
"fixpack": "2.3.1",
"husky": "1.3.1",
"jest": "24.1.0",
"jest-junit": "6.3.0",
"lint-staged": "8.0.4",
"prettier": "1.16.4",
"semantic-release": "15.6.0",
"ts-jest": "23.10.5",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.3.3"
},
"homepage": "https://github.com/jfairley/github-slack-bot#readme",
"keywords": [
"github",
"slack",
"slackbot"
],
"license": "ISC",
"main": "index.ts",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/jfairley/github-slack-bot.git"
},
"scripts": {
"commit": "commit",
"fixpack": "fixpack",
"lint": "tslint --project tsconfig.json -c tslint.json",
"pretest": "jest --clearCache",
"release": "semantic-release",
"start": "ts-node index.ts",
"test": "jest --coverage"
}
}