-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
60 lines (60 loc) · 1.8 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "build-tools",
"version": "0.2.0",
"engines": {
"node": ">= 18.0.0"
},
"main": "null",
"private": true,
"scripts": {
"lint:markdown": "electron-markdownlint \"**/*.md\"",
"lint:js": "prettier --check \"src/**/*.js\" \"tests/*.js\" \"src/e\"",
"lint": "npm run lint:js && npm run lint:markdown",
"prettier:write": "prettier --write \"src/**/*.js\" \"tests/*.js\" \"src/e\"",
"prepare": "husky",
"test": "nyc --reporter=lcov --reporter=text-summary vitest run --reporter=verbose --exclude tests/bootstrap.spec.mjs",
"test:all": "nyc --reporter=lcov --reporter=text-summary vitest run --reporter=verbose"
},
"repository": "https://github.com/electron/build-tools",
"author": "Electron Authors",
"license": "MIT",
"dependencies": {
"@marshallofsound/chrome-cookies-secure": "^2.1.1",
"@octokit/auth-oauth-device": "^3.1.1",
"@octokit/rest": "^18.5.2",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"chalk": "^2.4.1",
"command-exists": "^1.2.8",
"commander": "^9.0.0",
"debug": "^4.3.1",
"inquirer": "^8.2.4",
"node-gyp": "^10.0.1",
"open": "^6.4.0",
"path-key": "^3.1.0",
"progress": "^2.0.3",
"readline-sync": "^1.4.10",
"semver": "^7.6.0",
"tar": "^6.2.1",
"vscode-uri": "^3.0.7",
"which": "^2.0.2",
"yaml": "^2.4.5"
},
"devDependencies": {
"@electron/lint-roller": "^1.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"vitest": "^2.1.3"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"e": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}