-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.39 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
60
61
{
"name": "electron-simple-publisher",
"version": "2.0.1",
"description": "Simple way to publish releases for electron-simple-updater",
"main": "src/index.js",
"scripts": {
"test": "humile",
"lint": "eslint 'src/**/*.js'",
"test:full": "npm run test && npm run lint",
"postversion": "git push && git push --tags",
"preversion": "npm run test:full",
"prepack": "npm run test:full"
},
"repository": "megahertz/electron-simple-publisher",
"files": [
"src/*",
"!__specs__"
],
"keywords": [
"electron",
"atom",
"updater",
"update",
"publish",
"release",
"azure",
"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": "src/index.js"
},
"engines": {
"node": ">=12.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"humile": "^0.3.3"
},
"dependencies": {
"@azure/storage-blob": "^12.0.2",
"aws-sdk": "^2.38.0",
"ftp": "^0.3.10",
"httpreq": "^0.4.22",
"node-ssh": "^4.2.0",
"package-options": "^0.1.2",
"single-line-log": "^1.1.2"
}
}