34 lines
861 B
JSON
34 lines
861 B
JSON
{
|
|
"name": "mirror-to-gitea",
|
|
"version": "1.0.0",
|
|
"description": "mirror all your public github repositories to your gitea server",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "esbuild src/index.js --bundle --outdir=dist/ --platform=node",
|
|
"test": "jest"
|
|
},
|
|
"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": {
|
|
"@octokit/rest": "^21.0.2",
|
|
"@types/jest": "^29.5.13",
|
|
"p-queue": "^8.0.1",
|
|
"superagent": "^10.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.25.4",
|
|
"babel-jest": "^29.7.0",
|
|
"esbuild": "0.24.0",
|
|
"jest": "^29.7.0"
|
|
}
|
|
}
|