forked from ethereum/eip-review-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.94 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": "eip-review-bot",
"version": "0.0.1",
"description": "Request reviewers for EIP modifications",
"main": "dist/index.js",
"type": "module",
"scripts": {
"fmt": "prettier --write .",
"build": "esbuild src/action.ts --bundle --platform=node --target=node16 --outfile=dist/index.js && echo { \\\"type\\\": \\\"commonjs\\\" } > dist/package.json",
"test": "tsc --noEmit && prettier --check . && eslint . && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/eip-review-bot.git"
},
"author": "Pandapip1",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/ethereum/eip-review-bot/issues"
},
"homepage": "https://github.com/ethereum/eip-review-bot",
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/recommended": "^1.0.3",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.2.5"
},
"dependencies": {
"@octokit/fixtures": "^22.0.6",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/rest": "^20.0.0",
"@octokit/webhooks-types": "^7.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"before-after-hook": "^3.0.2",
"bottleneck": "^2.19.5",
"encoding": "^0.1.13",
"esbuild": "^0.21.0",
"front-matter": "^4.0.2",
"isomorphic-git": "^1.24.5",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"nock": "^13.3.0",
"once": "^1.4.0",
"tr46": "^5.0.0",
"ts-jest": "^29.0.5",
"tunnel": "^0.0.6",
"typescript": "^5.0.2",
"wrappy": "^1.0.2",
"yaml": "^2.2.1"
}
}