forked from scala-steward-org/scala-steward-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.79 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
95
96
97
98
99
100
{
"name": "scala-steward-action",
"description": "A GitHub Action to launch Scala Steward in your repository",
"type": "module",
"scripts": {
"build": "npm run build-pre && npm run build-main && npm run build-post",
"build-pre": "ncc build --target es2022 src/action/pre.ts && mv dist/index.js dist/pre.js",
"build-main": "ncc build --target es2022 src/action/main.ts && mv dist/index.js dist/main.js",
"build-post": "ncc build --target es2022 src/action/post.ts && mv dist/index.js dist/post.js",
"docs": "node --loader ts-node/esm src/utils/docs.ts && markdown-toc-gen update README.md",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"test": "xo && NODE_OPTIONS='--loader=ts-node/esm --experimental-specifier-resolution=node' c8 ava",
"report": "c8 report",
"all": "npm run build && npm test && npm run report"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scala-steward-org/scala-steward-action.git"
},
"keywords": [
"actions",
"scala",
"dependency-update",
"scala-steward"
],
"author": "alejandrohdezma",
"license": "Apache-2.0",
"dependencies": {
"@actions/cache": "^3.3.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@octokit/auth-app": "^7.1.3",
"@octokit/request": "^9.1.3",
"@types/node-fetch": "^2.6.11",
"@types/sinon": "^17.0.3",
"jssha": "^3.3.1",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.8.6",
"@vercel/ncc": "^0.38.2",
"all-contributors-cli": "^6.26.1",
"ava": "^6.2.0",
"c8": "^10.1.2",
"js-yaml": "^4.1.0",
"markdown-toc-gen": "^1.0.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"ts-pattern": "^5.5.0",
"typescript": "^5.6.3",
"xo": "^0.59.3"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"new-cap": 0,
"ava/no-ignored-test-files": 0,
"n/file-extension-in-import": 0,
"node/prefer-global/process": 0,
"import/extensions": 0,
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/no-empty-function": 0,
"unicorn/prefer-node-protocol": 0
}
},
"ava": {
"files": [
"src/**/*.test.ts"
],
"extensions": {
"ts": "module"
}
},
"c8": {
"all": true,
"src": "src",
"exclude": [
"src/core/!(types.ts)",
"src/action",
"src/**/*.test.ts",
"src/utils"
],
"reporter": [
"text",
"cobertura"
]
}
}