forked from amitsingh-007/next-release-tag
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 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
{
"name": "next-release-tag-date",
"version": "1.0.0",
"description": "Github Action to generate next Release Tag by date",
"author": "alexvingg",
"license": "MIT-open-group",
"homepage": "https://github.com/alexvingg/next-release-tag#readme",
"scripts": {
"build": "pnpm clean && ncc build src/index.ts --minify --license licenses.txt",
"clean": "rimraf dist/",
"dist": "pnpm lint && pnpm test && pnpm build",
"lint": "eslint .",
"test": "vitest run"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"moment": "^2.29.4",
"rimraf": "4.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"@vercel/ncc": "0.36.0",
"eslint": "8.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.3",
"typescript": "4.9.4",
"vitest": "0.27.3"
}
}