-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.62 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
{
"name": "@suen/electron-updater",
"version": "1.0.5",
"main": "dist/app.js",
"license": "MIT",
"scripts": {
"dev": "npm run test-pack && cd test && electron .",
"build": "babel src -d dist",
"test-pack": "npm run build && node build/build",
"test-build": "npm run build && npm run test-pack && cd test && build"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.51"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.51",
"@babel/core": "7.0.0-beta.51",
"@babel/node": "7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.51",
"@babel/plugin-transform-runtime": "7.0.0-beta.51",
"@babel/preset-env": "7.0.0-beta.51",
"@babel/register": "7.0.0-beta.51",
"babel-eslint": "8.2.3",
"babel-loader": "8.0.2",
"copy-webpack-plugin": "^4.5.1",
"electron": "^2.0.2",
"electron-builder": "20.14.7",
"eslint": "^4.19.1",
"nodemon": "^1.17.5",
"webpack": "^4.12.0"
},
"description": "## feature - same api like [electron-userland/electron-builder](https://github.com/electron-userland/electron-builder/tree/master/packages/electron-updater) - do not need code siging for mac - only surpport github release now - linux is not supported now - node >= 8",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunzongzheng/electron-updater.git"
},
"author": "",
"bugs": {
"url": "https://github.com/sunzongzheng/electron-updater/issues"
},
"homepage": "https://github.com/sunzongzheng/electron-updater#readme"
}