generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
36 lines (36 loc) · 876 Bytes
/
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
{
"name": "github-pr-contains-action",
"version": "14",
"private": false,
"description": "An action that performs checks on PRs",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build --source-map --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/github-pr-contains-action.git"
},
"keywords": [
"actions",
"node",
"diff",
"pull request"
],
"author": "JJ Merelo",
"license": "MIT",
"dependencies": {
"@actions/github": "^6.0.0",
"parse-diff": "^0.6.0"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@vercel/ncc": "^0.38.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"typescript": "^5.2.2"
}
}