forked from aluxian/electron-windows-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "electron-windows-installer",
"version": "1.4.4",
"description": "Build Windows installers for Electron apps using Squirrel. Works with Gulp!",
"main": "./dist/index.js",
"license": "MIT",
"author": "Alexandru Rosianu <[email protected]>",
"keywords": [
"electron",
"atom-shell",
"windows",
"installer",
"squirrel",
"gulpplugin"
],
"files": [
"dist",
"vendor",
"resources"
],
"repository": {
"type": "git",
"url": "https://github.com/Aluxian/electron-windows-installer.git"
},
"bugs": {
"url": "https://github.com/Aluxian/electron-windows-installer/issues"
},
"scripts": {
"build": "coffee -c -b -o dist src",
"pretest": "npm run build",
"test": "mocha -t 300000 --compilers coffee:coffee-script/register"
},
"dependencies": {
"asar": "0.11.0",
"bluebird": "^3.1.1",
"dot": "^1.0.3",
"fs-extra": "^0.26.3",
"temp": "^0.8.3"
},
"devDependencies": {
"coffeelint": "^1.13.1",
"coffee-script": "^1.10.0",
"mocha": "^2.3.4"
}
}