-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "review-bot",
"version": "2.7.2",
"description": "Have custom review rules for PRs with auto assignment",
"main": "src/index.ts",
"scripts": {
"start": "node dist",
"build": "ncc build --license LICENSE",
"cli": "ncc build src/cli.ts -o dist-cli && node dist-cli",
"test": "jest",
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'",
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'",
"postinstall": "papi"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/review-bot.git"
},
"author": "Javier Bullrich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paritytech/review-bot/issues"
},
"homepage": "https://github.com/paritytech/review-bot#readme",
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@octokit/webhooks-types": "^7.6.1",
"@types/jest": "^29.5.14",
"@vercel/ncc": "^0.38.4",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@eng-automation/js": "^2.2.0",
"@polkadot-api/descriptors": "portal:.papi/descriptors",
"joi": "^17.13.3",
"polkadot-api": "^1.20.0",
"smoldot": "^2.0.39",
"yaml": "^2.8.1"
},
"packageManager": "[email protected]",
"resolutions": {
"@polkadot-api/descriptors": "portal:./.papi/descriptors",
"joi": "^17.13.3"
}
}