forked from electron/build-tools-installer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "@overwolf/ow-electron-build-tools",
"version": "1.2.0-1",
"description": "A wrapper toolkit for working with Electron.js source code",
"main": "index.js",
"bin": {
"e-owe": "./run.js",
"electron-build-tools": "./run.js"
},
"files": [
"preinstall.js",
"run.js"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"preinstall": "node preinstall.js",
"lint": "prettier --check \"**/*.js\"",
"prettier:write": "prettier --write \"**/*.js\"",
"test": "npx mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/overwolf/ow-electron-build-tools-installer.git"
},
"author": "Shelley Vohr <shelley.vohr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/overwolf/ow-electron-build-tools-installer/issues"
},
"homepage": "https://github.com/overwolf/ow-electron-build-tools-installer#readme",
"devDependencies": {
"mocha": "^10.1.0",
"prettier": "^1.19.1"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}