forked from megahertz/electron-simple-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "electron-simple-updater",
"version": "2.0.11",
"description": "Simple way to enable update for the electron application",
"main": "src/index.js",
"scripts": {
"test": "humile",
"test:e2e": "./e2e/start",
"test:full": "npm run test && npm run lint && npm run test:e2e",
"lint": "eslint src && tsc --noEmit",
"postversion": "git push && git push --tags",
"preversion": "npm run test:full",
"prepare": "npm run test:full"
},
"typings": "src/index.d.ts",
"repository": "megahertz/electron-simple-updater",
"files": [
"src/*",
"!__specs__"
],
"keywords": [
"electron",
"atom",
"updater",
"update",
"publish",
"release",
"windows",
"mac",
"osx",
"linux",
"desktop"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/electron-simple-updater/issues",
"homepage": "https://github.com/megahertz/electron-simple-updater#readme",
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"@types/node": "^13.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"humile": "^0.2.16",
"typescript": "^3.7.4"
},
"dependencies": {
"axios": "^0.24.0",
"semver": "^7.1.1"
}
}