forked from automation-stack/electron-sudo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 915 Bytes
/
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
{
"name": "electron-sudo",
"version": "5.0.2",
"description": "Electron subprocess with administrative privileges, prompting the user with an OS dialog if necessary.",
"main": "index.js",
"author": "David Mohr",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:david-mohr/electron-sudo.git"
},
"keywords": [
"sudo",
"os",
"dialog",
"prompt",
"command",
"exec",
"ui",
"electron",
"elevate",
"administrative",
"privileges",
"UAC",
"subprocess"
],
"bugs": {
"url": "https://github.com/david-mohr/electron-sudo/issues"
},
"homepage": "https://github.com/david-mohr/electron-sudo#readme",
"scripts": {
"lint": "eslint -c .eslintrc *.js tests",
"test": "mocha tests"
},
"devDependencies": {
"chai": "^4.3.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.20.0",
"mocha": "^8.3.0"
}
}