-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "@noowah/node-pr-versioning",
"author": "Hawoon JOH <[email protected]> (https://github.com/henrynoowah)",
"version": "1.0.0",
"description": "GitHub Action for automated PR versioning in Node.js projects",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"keywords": [
"github",
"actions",
"versioning",
"pr"
],
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.11.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.3"
}
}