forked from megahertz/electron-simple-updater
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "electron-simple-updater",
"version": "1.2.4",
"description": "Simple way to enable update for the electron application",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "./node_modules/.bin/mocha ./spec/**/*.mock.js ./spec/**/*.spec.js",
"lint": "node_modules/.bin/eslint ./index.js ./lib/**/*.js ./example/app/*.js ./spec/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megahertz/electron-simple-updater.git"
},
"files": [
"index.js",
"lib/*"
],
"keywords": [
"electron",
"atom",
"updater",
"update",
"publish",
"release",
"windows",
"mac",
"osx",
"linux",
"desktop"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": {
"url": "https://github.com/megahertz/electron-simple-updater/issues"
},
"homepage": "https://github.com/megahertz/electron-simple-updater#readme",
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"chai": "*",
"electron": "^1.4.3",
"eslint": "^3.8.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "*",
"mock-require": "^1.3.0",
"rewire": "*",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"httpreq": "^0.4.22",
"semver": "*"
}
}