-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 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
{
"name": "label-requires-reviews-action",
"version": "2.0.0",
"author": "Travelperk Engineering <[email protected]>",
"license": "MIT",
"description": "Require a number of reviews for a certain label",
"main": "build/entrypoint.js",
"scripts": {
"start": "node ./build/entrypoint.js",
"test": "jest --collect-coverage",
"test:watch": "jest --watchAll",
"typecheck": "tsc -p tsconfig.json",
"pack": "ncc build",
"lint": "eslint --ext .js --ext .tsx --fix --max-warnings 0",
"lint-staged": "lint-staged",
"prettier": "prettier",
"prettier:fix": "npm run prettier -- --write 'src/**/*.ts'",
"all": "npm run typecheck && npm run prettier:fix && npm run lint && npm run pack && npm test"
},
"dependencies": {
"@vercel/ncc": "^0.38.2",
"actions-toolkit": "^6.0.1"
},
"devDependencies": {
"@octokit/endpoint": "^10.1.2",
"@octokit/rest": "16.28.1",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"prettier-eslint": "^16.3.0",
"signale": "^1.4.0",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3"
},
"lint-staged": {
"src/**/*.(.ts)": [
"npm run lint",
"npm run prettier -- --write"
]
}
}