-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "mirror-to-gitea",
"version": "1.0.0",
"description": "mirror all your public github repositories to your gitea server",
"main": "index.cjs",
"scripts": {
"clean": "rm -rf dist/",
"check": "npx @biomejs/biome check --write",
"build": "esbuild src/index.mjs --bundle --outdir=dist/ --platform=node",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaedle/mirror-to-gitea.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaedle/mirror-to-gitea/issues"
},
"homepage": "https://github.com/jaedle/mirror-to-gitea#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.4",
"@octokit/rest": "^21.0.2",
"@types/jest": "^29.5.13",
"minimatch": "^10.0.1",
"p-queue": "^8.0.1",
"superagent": "^10.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@kie/mock-github": "^3.0.0-beta.1",
"esbuild": "0.24.0",
"jest": "^29.7.0"
},
"type": "module"
}