-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.22 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
46
{
"name": "actionstagger",
"version": "2.1.0-rc6",
"repository": {
"type": "git",
"url": "git+https://github.com/Actions-R-Us/actions-tagger.git"
},
"main": "./lib/index.js",
"bin": {
"actionstagger": "./lib/index.js"
},
"scripts": {
"watch": "ncc build src/index.ts --watch",
"build": "ncc build src/index.ts --license LICENSE --minify --no-cache --out lib",
"lint": "prettier --check . && tsc && tsc -p ./tests",
"format": "prettier --write .",
"test": "jest"
},
"engines": {
"node": ">=20"
},
"author": {
"name": "Actions-R-Us",
"url": "https://github.com/Actions-R-Us"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^5.0.1",
"semver": "^7.5.4"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.3.1",
"@types/jest": "~29.5.8",
"@types/node": "~20.9.0",
"@types/semver": "^7.5.5",
"@vercel/ncc": "^0.38.1",
"import-sort-parser-typescript": "^6.0.0",
"jest": "^29.7.0",
"prettier": "3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
}
}