-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 883 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
{
"name": "electron-webpack-plugin",
"version": "2.0.0",
"description": "Webpack plugin to launch Electron.",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm test && babel src --out-dir lib",
"test": "echo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thesbros/electron-webpack-plugin.git"
},
"author": "thesbros",
"license": "X11",
"bugs": {
"url": "https://github.com/thesbros/electron-webpack-plugin/issues"
},
"keywords": [
"electron",
"webpack",
"plugin",
"relaunch",
"restart",
"run",
"webpack-plugin"
],
"homepage": "https://github.com/thesbros/electron-webpack-plugin#readme",
"peerDependencies": {
"electron": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1"
}
}