forked from electron/build-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "build-tools",
"version": "0.2.0",
"engines": {
"node": ">= 10.12.0"
},
"main": "null",
"private": true,
"scripts": {
"lint": "prettier --check \"src/**/*.js\" \"tests/*.js\" \"src/e\"",
"prettier:write": "prettier --write \"src/**/*.js\" \"tests/*.js\" \"src/e\"",
"test": "nyc --reporter=lcov --reporter=text-summary jest --config=jest.fast.json",
"test:all": "nyc --reporter=lcov --reporter=text-summary jest --config=jest.slow.json"
},
"repository": "https://github.com/electron/build-tools",
"author": "Electron Authors",
"license": "MIT",
"dependencies": {
"@octokit/auth-oauth-device": "^3.1.1",
"@octokit/rest": "^18.5.2",
"chalk": "^2.4.1",
"command-exists": "^1.2.8",
"commander": "^3.0.2",
"cross-zip": "^3.0.0",
"debug": "^4.3.1",
"got": "^10.2.2",
"hasha": "^5.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"node-gyp": "^6.1.0",
"open": "^6.4.0",
"path-key": "^3.1.0",
"readline-sync": "^1.4.10",
"stream-progressbar": "^1.3.0",
"which": "^2.0.2"
},
"devDependencies": {
"husky": "^4.2.0",
"jest": "^24.9.0",
"lint-staged": "^10.0.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"e": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}