This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 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
{
"name": "pr-custom-review",
"type": "module",
"version": "0.0.0",
"description": "GitHub Action for complex pull request approval cases",
"author": "Parity <admin@parity.io> (https://parity.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/pr-custom-review.git"
},
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write",
"fix": "yarn fix:eslint '{*,**/*}.{cjs,ts}' && yarn fix:prettier '{*,**/*}.json'",
"prettier": "prettier --check --loglevel silent '{*,**/*}.{json,html}'",
"eslint": "eslint --quiet '{*,**/*}.ts'",
"lint": "yarn eslint && yarn prettier",
"build": "rimraf build/prcr && tsc",
"test": "jest",
"coverage": "yarn test --coverage",
"package": "rimraf dist/prcr && ncc build --source-map --license licenses.txt --out dist/prcr build/prcr/src/github/action/main.js",
"start:prefix": "node --es-module-specifier-resolution node --loader ./loader.cjs",
"start": "yarn start:prefix ./src/server/main.ts",
"dev": "yarn start:prefix --trace-warnings -r ./.env.cjs ./src/server/main.ts",
"watch": "nodemon --watch src --watch .env.cjs -e cjs,ts --exec \"yarn dev\""
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.1",
"@octokit/rest": "^18.12.0",
"async-mutex": "^0.3.2",
"fastify": "^3.29.4",
"iterative-permutation": "^1.0.0",
"joi": "^17.6.0",
"ts-node": "^10.9.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"@eng-automation/js-style": "^2.1.0",
"@resolritter/tsc-files": "^1.1.4",
"@types/eventsource": "^1.1.8",
"@types/jest": "^27.4.1",
"@types/node": "^18.16.18",
"@types/node-fetch": "^2.6.1",
"@types/readable-stream": "^2.3.13",
"@vercel/ncc": "^0.33.3",
"jest": "^27.5.1",
"nock": "^13.2.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
}
}