forked from electron/windows-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 741 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 741 Bytes
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
{
"name": "electron-winstaller",
"version": "1.0.0",
"description": "Module to generate Windows installers for Electron apps",
"main": "./index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/electronjs/windows-installer.git"
},
"scripts": {
"prepublish": "grunt clean lint coffee",
"test": "grunt test"
},
"dependencies": {
"asar": "~0.8.0",
"fs-jetpack": "^0.7.1",
"temp": "^0.8.1",
"underscore": "^1.7.0"
},
"devDependencies": {
"coffeelint": "^1.13.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-coffee": "^0.11.1",
"grunt-shell": "^1.1.1",
"jasmine-focused": "^1.0.5"
}
}