forked from Decathlon/pull-request-labeler-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 830 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 830 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
{
"name": "pull-request-labeler-action",
"version": "2.0.1",
"description": "Dynamically tag your pull requests with custom labels based on changed files",
"main": "build/entrypoint.js",
"scripts": {
"start": "node ./build/entrypoint.js",
"test": "jest --collect-coverage",
"test:watch": "jest --watchAll",
"build:main": "tsc -p tsconfig.json"
},
"dependencies": {
"actions-toolkit": "2.1.0",
"jest-junit": "^6.4.0"
},
"devDependencies": {
"@octokit/rest": "16.28.1",
"@types/jest": "^24.0.15",
"awesome-typescript-loader": "^5.2.1",
"jest": "^24.8.0",
"signale": "^1.4.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.0",
"typescript": "^3.5.2"
}
}