-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 756 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 756 Bytes
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
{
"name": "pr-labeler-action",
"private": true,
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"build": "ncc build src/index.ts -o dist",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier . --ignore-unknown --write",
"format:check": "prettier . --ignore-unknown --check"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"matcher": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.17",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"nock": "^13.5.1",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}