-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "publish-and-tag",
"description": "A GitHub Action for properly publishing and tagging GitHub Actions.",
"version": "0.0.0",
"author": "Dariusz Porowski",
"contributors": [
"Jason Etcovitch"
],
"license": "MIT",
"private": true,
"main": "dist/index.js",
"files": [
"dist/*",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/raven-actions/publish-and-tag.git"
},
"bugs": {
"url": "https://github.com/raven-actions/publish-and-tag/issues"
},
"homepage": "https://github.com/raven-actions/publish-and-tag#readme",
"keywords": [
"raven-actions",
"github-actions",
"actions",
"github",
"publish",
"tag"
],
"scripts": {
"cleanup": "pnpm dlx rimraf -g dist lib coverage reports",
"cleanup:deps": "pnpm cleanup && pnpm dlx rimraf node_modules && pnpm dlx rimraf pnpm-lock.yaml",
"format": "prettier --write **/*.ts",
"format:ck": "prettier --check **/*.ts",
"package": "pnpm dlx @vercel/ncc build ./src/index.ts --minify --source-map --license licenses.txt",
"test": "jest",
"test:cov": "jest --coverage",
"test:ci": "jest --ci",
"test:ci:cov": "jest --ci --coverage --json --outputFile=coverage/report.json",
"build": "pnpm cleanup && pnpm format && pnpm package",
"build:ci": "pnpm build",
"run:dev": "pnpm dlx @vercel/ncc run ./src/index.ts",
"run": "node dist/index.js",
"deps:ck": "pnpm outdated --long",
"deps": "pnpm update --latest"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0",
"actions-toolkit": "^6.0.1",
"semver": "^7.6.2"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/semver": "^7.5.8",
"@types/signale": "^1.4.7",
"eslint": "^9.7.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"js-yaml": "^4.1.0",
"nock": "^13.5.4",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"signale": "^1.4.0",
"ts-jest": "^29.2.2",
"typescript": "^5.5.3",
"typescript-eslint": "8.0.0-alpha.41"
}
}