-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1005 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1005 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
38
{
"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.9",
"@fetch-mock/vitest": "^0.2.18",
"@vitest/coverage-v8": "^5.0.1",
"esbuild": "^0.28.2",
"serverless-esbuild": "^1.57.2",
"serverless-offline": "^13.10.1",
"vite": "^8.3.0",
"vitest": "^5.0.1"
},
"dependencies": {
"@octokit/graphql": "^9.0.5",
"@octokit/rest": "^22.0.1",
"semver": "^7.8.5",
"uri-js": "npm:uri-js-replace"
},
"resolutions": {
"uri-js": "npm:uri-js-replace"
}
}