-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "roller",
"version": "1.0.0",
"private": true,
"description": "automate the submodule update process",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "prettier --check \"{src,tests}/**/*.ts\"",
"prettier:write": "prettier --write \"{src,tests}/**/*.ts\"",
"prepare": "husky",
"roll-chromium": "DEBUG=roller* node lib/chromium-cron.js",
"roll-node": "DEBUG=roller* node lib/node-cron.js",
"start": "DEBUG=roller* probot run ./lib/index.js",
"test": "vitest run --coverage --reporter=verbose"
},
"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": {
"@tsconfig/node24": "^24.0.4",
"@types/debug": "^4.1.12",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "4.1.1",
"husky": "^9.1.6",
"lint-staged": "^16.2.7",
"nock": "^14.0.1",
"prettier": "^3.3.3",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
},
"dependencies": {
"@octokit/auth-app": "^6.0.2",
"@octokit/rest": "^20.0.2",
"debug": "^3.1.0",
"probot": "^14.2.4",
"semver": "^7.5.2",
"yaml": "^2.8.3"
},
"lint-staged": {
"*.ts": "prettier --write"
},
"resolutions": {
"fsevents": "npm:@electron/fsevents@2.3.3-fork"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}