-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 776 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 776 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
31
32
33
{
"name": "github-updater",
"version": "0.0.1",
"description": "A module to update your app directly through github releases",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hallowatcher/electron-github-updater.git"
},
"keywords": [
"electron",
"github",
"updater"
],
"author": "Uwe Wiemer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hallowatcher/electron-github-updater/issues"
},
"homepage": "https://github.com/Hallowatcher/electron-github-updater#readme",
"dependencies": {
"request": "^2.79.0",
"semver": "^5.3.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6"
}
}