-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 984 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 984 Bytes
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
{
"name": "serverless-github-check",
"type": "module",
"main": "handler.js",
"scripts": {
"test": "vitest run --silent",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "biome check --max-diagnostics=none",
"lint:fix": "biome check --write --unsafe --max-diagnostics=none"
},
"author": "20 Minutes <web-tech@20minutes.fr>",
"license": "MIT",
"engines": {
"npm": "please-use-yarn-instead",
"yarn": ">= 1.22.0",
"node": ">= 24"
},
"devDependencies": {
"@20minutes/eslint-config": "^3.0.0",
"@fetch-mock/vitest": "^0.2.18",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"serverless-esbuild": "^1.57.0",
"serverless-offline": "^13.9.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"semver": "^7.7.4",
"uri-js": "npm:uri-js-replace"
},
"resolutions": {
"uri-js": "npm:uri-js-replace"
}
}