forked from megahertz/electron-simple-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
59
{
"name": "electron-simple-publisher",
"version": "0.6.2",
"description": "Simple way to publish releases for electron-simple-updater",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "./node_modules/.bin/mocha './spec/*.js' './lib/**/*.spec.js'",
"lint": "node_modules/.bin/eslint ./index.js './lib/**/*.js' './spec/**/*.js'"
},
"repository": "megahertz/electron-simple-publisher",
"files": [
"index.js",
"lib/**/*.js",
"!lib/**/*.spec.js"
],
"keywords": [
"electron",
"atom",
"updater",
"update",
"publish",
"release",
"s3",
"ssh",
"github",
"windows",
"mac",
"osx",
"linux",
"desktop"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/electron-simple-publisher/issues",
"homepage": "https://github.com/megahertz/electron-simple-publisher#readme",
"bin": {
"publish": "index.js"
},
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"chai": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"mocha": "*"
},
"dependencies": {
"aws-sdk": "^2.38.0",
"ftp": "^0.3.10",
"httpreq": "^0.4.22",
"minimist": "^1.2.0",
"node-ssh": "^4.2.0",
"single-line-log": "^1.1.2",
"url-parse": "^1.4.7"
}
}