generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 873 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
37
{
"name": "summarize-issues",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to generate a Markdown summary of the issues in a repo",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brcrista/summarize-issues.git"
},
"keywords": [
"actions",
"node"
],
"author": "Brian Cristante",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^12.20.36",
"@zeit/ncc": "^0.20.5",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"js-yaml": "^3.14.1",
"ts-jest": "^27.0.7",
"typescript": "^3.9.10"
}
}