generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.55 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "milestone-action",
"version": "3.1.0",
"private": true,
"description": "A GitHub Action that automatically sets the current or farthest due milestone on issues and pull requests.",
"keywords": [
"actions",
"node",
"milestone",
"automation"
],
"homepage": "https://github.com/benelan/milestone-action",
"bugs": {
"url": "https://github.com/benelan/milestone-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benelan/milestone-action"
},
"license": "MIT",
"author": "Ben Elan",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"all": "npm run format && npm run lint && npm run package",
"bundle": "npm run format && npm run package",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@octokit/types": "^13.5.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^5.0.1",
"js-yaml": "^4.1.0",
"prettier": "3.3.1",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.14.0"
}
}