-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "zulipbot",
"version": "1.0.0",
"description": "GitHub workflow-optimizing bot",
"engines": {
"node": "8 - 10"
},
"scripts": {
"start": "node ./src/index.js",
"pretest": "eslint .",
"test": "tap --coverage 'test/**/*.js'",
"posttest": "mkdir ./coverage && tap --coverage-report=text-lcov > ./coverage/coverage.lcov | codecov"
},
"dependencies": {
"@octokit/rest": "^15.9.4",
"codecov": "^3.0.4",
"express": "~4.16.3",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-xo-space": "^0.20.0",
"simple-mock": "^0.8.0",
"smee": "^0.2.0",
"tap": "^12.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/zulip/zulipbot.git"
},
"keywords": [
"zulip",
"bot",
"bots",
"github",
"workflow",
"zulipbot",
"synicalsyntax"
],
"author": "Cynthia Lin <[email protected]> (https://synicalsyntax.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zulip/zulipbot/issues"
},
"homepage": "https://github.com/zulip/zulipbot#readme"
}