-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.35 KB
/
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
38
39
40
41
42
43
44
45
{
"name": "closed-reference-notifier",
"version": "1.1.0",
"description": "A GitHub action to open an issue when GitHub references in your code are closed.",
"homepage": "https://github.com/ory/closed-reference-notifier#readme",
"bugs": {
"url": "https://github.com/ory/closed-reference-notifier/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ory/closed-reference-notifier.git"
},
"license": "ISC",
"author": "",
"bin": {
"closed-reference-notifier": "distCli/index.js"
},
"scripts": {
"build": "npm-run-all build:*",
"build:cli": "ncc build src/runInCli.ts -o distCli && echo -e \"#!/usr/bin/env node\\n$(cat distCli/index.js)\" > distCli/index.js",
"build:action": "ncc build src/runInAction.ts -o distAction",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch"
},
"prettier": "ory-prettier-styles",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1",
"ignore": "^5.1.4",
"walkdir": "^0.4.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@vercel/ncc": "^0.24.1",
"jest": "^26.6.3",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"ory-prettier-styles": "1.3.0",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "^2.2.18",
"ts-jest": "^25.4.0",
"typescript": "^3.9.7"
}
}