зеркало из https://github.com/electron/roller.git
54 строки
1.4 KiB
JSON
54 строки
1.4 KiB
JSON
{
|
|
"name": "roller",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "automate the submodule update process",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "prettier --check \"src/**/*.ts\"",
|
|
"postinstall": "tsc",
|
|
"prettier:write": "prettier --write \"src/**/*.ts\"",
|
|
"prepare": "husky",
|
|
"roll-chromium": "DEBUG=roller* node lib/chromium-cron.js",
|
|
"roll-node": "DEBUG=roller* node lib/node-cron.js",
|
|
"roll-orb": "DEBUG=roller* node lib/orb-cron.js",
|
|
"start": "DEBUG=roller* probot run ./lib/index.js",
|
|
"test": "jest --config=jest.json --coverage"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/electron/roller.git"
|
|
},
|
|
"author": "Shelley Vohr",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/electron/roller/issues"
|
|
},
|
|
"homepage": "https://github.com/electron/roller#readme",
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.12",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.9.0",
|
|
"@types/semver": "^7.5.8",
|
|
"husky": "^9.1.6",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "^15.2.10",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/auth-app": "^6.0.2",
|
|
"@octokit/rest": "^20.0.2",
|
|
"@octokit/webhooks-types": "^7.3.1",
|
|
"debug": "^3.1.0",
|
|
"probot": "^12.3.3",
|
|
"semver": "^7.5.2",
|
|
"yaml": "^2.3.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": "prettier --write"
|
|
}
|
|
}
|