-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1010 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
{
"name": "forgotten-issue-finder",
"version": "1.0.0",
"description": "Filter issues on a repo by ones that have had a merged PR reference them",
"main": "src/index.ts",
"scripts": {
"prestart": "tsc",
"start": "env-cmd node dist/index.js",
"build": "rm -rf ./dist && ncc build ./src/index.ts -m --target es2015 --license LICENSE",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keabarnes/forgotten-issue-finder.git"
},
"keywords": [
"github"
],
"author": "Kea Barnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/keabarnes/forgotten-issue-finder/issues"
},
"homepage": "https://github.com/keabarnes/forgotten-issue-finder#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@octokit/types": "^6.8.2",
"@vercel/ncc": "^0.27.0",
"env-cmd": "^10.1.0",
"typescript": "^4.1.3"
}
}