mirror-to-gitea/package.json

34 lines
861 B
JSON
Raw Normal View History

2019-03-09 12:47:07 +00:00
{
"name": "mirror-to-gitea",
"version": "1.0.0",
"description": "mirror all your public github repositories to your gitea server",
"main": "index.js",
"scripts": {
2024-09-24 14:46:10 +01:00
"build": "esbuild src/index.js --bundle --outdir=dist/ --platform=node",
"test": "jest"
2019-03-09 12:47:07 +00:00
},
"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": {
2024-09-24 14:31:15 +01:00
"@octokit/rest": "^21.0.2",
2024-09-24 14:46:10 +01:00
"@types/jest": "^29.5.13",
2024-09-24 14:31:15 +01:00
"p-queue": "^8.0.1",
"superagent": "^10.1.0"
2024-09-24 14:24:33 +01:00
},
"devDependencies": {
2024-09-24 14:46:10 +01:00
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"esbuild": "0.24.0",
"jest": "^29.7.0"
2019-03-09 12:47:07 +00:00
}
2020-11-01 21:08:37 +00:00
}