-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.69 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@myparcel/actions",
"version": "1.0.0",
"private": true,
"description": "This is a collection of reusable composite actions for GitHub Actions workflows.",
"keywords": [
"github",
"actions"
],
"homepage": "https://github.com/myparcelnl/actions#readme",
"bugs": {
"url": "https://github.com/myparcelnl/actions/issues"
},
"repository": "github:myparcelnl/actions",
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"scripts": {
"build": "node dist/build.js",
"compile": "tsup-node private/build.ts --target node20",
"postinstall": "is-ci || husky install",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:update-tags": "INPUT_MAJOR=true INPUT_MINOR=true bun update-tags/dist/index.js"
},
"lint-staged": {
"!(node_modules/**/*)*.ts": "yarn compile && yarn build",
"!(node_modules/**/*)*.{json,md,yml}": "npx -q prettier --write",
"!(node_modules/**/*)*.{ts,js}": "npx -q eslint --fix",
"./package.json": "npx -q sort-package-json"
},
"prettier": "@myparcel/prettier-config",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": "latest"
},
"extends": [
"@myparcel-eslint/eslint-config-node",
"@myparcel-eslint/eslint-config-esnext"
],
"overrides": [
{
"files": [
"./**/*.ts"
],
"extends": "@myparcel-eslint/eslint-config-prettier-typescript"
},
{
"files": [
"./private/**/*",
"./**/*.spec.*"
],
"rules": {
"max-lines-per-function": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-magic-numbers": "off"
}
}
],
"root": true
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/glob": "^0.4.0",
"@fastify/busboy": "^2.1.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@myparcel-eslint/eslint-config-esnext": "^1.2.0",
"@myparcel-eslint/eslint-config-node": "^1.2.0",
"@myparcel-eslint/eslint-config-prettier-typescript": "^1.2.0",
"@myparcel/prettier-config": "^1.1.0",
"@myparcel/semantic-release-config": "^5.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.0",
"prettier": "^2.8.3",
"semantic-release": "^23.0.0",
"sort-package-json": "^2.4.1",
"supports-color": "^9.3.1",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.5"
},
"volta": {
"node": "20.15.1",
"yarn": "4.3.1"
}
}