-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
81 lines (81 loc) · 2.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "electron-sudo",
"version": "4.0.12",
"description": "Electron subprocess with administrative privileges, prompting the user with an OS dialog if necessary.",
"main": "./dist/index.js",
"author": "Aleksandr Komlev",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:automation-stack/electron-sudo.git"
},
"keywords": [
"sudo",
"os",
"dialog",
"prompt",
"command",
"exec",
"ui",
"electron",
"elevate",
"administrative",
"privileges",
"UAC",
"subprocess"
],
"bugs": {
"url": "https://github.com/automation-stack/electron-sudo/issues"
},
"homepage": "https://github.com/automation-stack/electron-sudo#readme",
"scripts": {
"build": "node_modules/webpack/bin/webpack.js --config ./webpack/config.babel.js",
"build-win32": "node node_modules\\webpack\\bin\\webpack.js --config webpack\\config.babel.js",
"prepublish": "npm run test",
"lint": "node_modules/eslint/bin/eslint.js -c .eslintrc ./src",
"test-win32": "npm run build-win32 && node node_modules\\mocha\\bin\\mocha --compilers js:babel-core/register tests",
"test": "npm run build && node_modules/mocha/bin/mocha --compilers js:babel-core/register ./tests"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-lodash": "^2.2.1",
"babel-plugin-module-alias": "^1.2.0",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-syntax-decorators": "^6.5.0",
"babel-plugin-syntax-flow": "^6.8.0",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-async-to-module-method": "^6.7.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"copy-webpack-plugin": "^3.0.1",
"dirty-chai": "^1.2.2",
"eslint": "^2.6.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.2.0",
"estraverse-fb": "^1.3.1",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"raw-loader": "^0.5.1",
"source-map-support": "^0.4.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-module-hot-accept": "^1.0.4",
"webpack-shell-plugin": "^0.4.2"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"bluebird": "^3.4.6"
}
}