generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
34 lines (34 loc) · 860 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
{
"name": "issue-action",
"version": "2.0.2",
"description": "Github action for github issues",
"keywords": [
"Actions",
"GitHub",
"JavaScript"
],
"homepage": "https://github.com/Naturalclar/issue-action#readme",
"bugs": {
"url": "https://github.com/Naturalclar/issue-action/issues"
},
"repository": "https://github.com/Naturalclar/issue-action.git",
"license": "MIT",
"author": "Jesse Katsumata <[email protected]>",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "ncc build src/index.ts -o lib"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.7",
"@vercel/ncc": "^0.25.1",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"typescript": "^4.2.2"
}
}