-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "zulipbot",
"version": "1.0.0",
"description": "GitHub workflow-optimizing bot",
"type": "module",
"scripts": {
"start": "node ./src/index.js",
"pretest": "eslint . && prettier --check . '!**/*.js'",
"test": "tap --coverage-report=lcovonly"
},
"dependencies": {
"@octokit/plugin-retry": "^7.0.3",
"@octokit/plugin-throttling": "^9.0.3",
"@octokit/rest": "^20.0.2",
"@octokit/webhooks": "^13.1.1",
"express": "^4.17.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^54.0.0",
"nock": "^14.0.0-beta.2",
"prettier": "^3.2.5",
"tap": "^21.0.0"
},
"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",
"tap": {
"allow-incomplete-coverage": true,
"test-env": [
"NODE_ENV=test"
]
}
}