forked from willnewii/qiniuClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "qiniuClient",
"cnname": "七牛云文件管理",
"version": "0.1.0",
"description": "一个七牛云文件管理客户端",
"scripts": {
"dev": "node tasks/runner.js",
"pack:mac": "npm run pack && cross-env ELECTRON_MIRROR='https://npm.taobao.org/mirrors/electron/' build --mac --projectDir ./app",
"pack:win": "npm run pack && cross-env ELECTRON_MIRROR='https://npm.taobao.org/mirrors/electron/' build --win --ia32 --projectDir ./app",
"pack": "npm run pack:main && npm run pack:renderer",
"pack:main": "cross-env NODE_ENV=production webpack --progress --colors --config webpack.main.config.js",
"pack:renderer": "cross-env NODE_ENV=production webpack --progress --colors --config webpack.renderer.config.js",
"postinstall": "cd app && npm install"
},
"author": "诗人的咸鱼 <willnewii@163.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.18.0",
"babel-runtime": "^6.6.1",
"babili-webpack-plugin": "^0.1.2",
"copy-webpack-plugin": "^4.2.3",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"del": "^2.2.1",
"devtron": "^1.1.0",
"electron": "^1.8.2-beta.4",
"electron-builder": "^19.47.1",
"electron-debug": "^1.1.0",
"electron-devtools-installer": "^2.2.3",
"electron-rebuild": "^1.1.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.16.1",
"json-loader": "^0.5.4",
"node-sass": "^4.7.2",
"prepack-webpack-plugin": "^1.0.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.19.0",
"tree-kill": "^1.1.0",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^2.2.4",
"vue-html-loader": "^1.2.2",
"vue-loader": "^13.5.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.9",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.5"
},
"dependencies": {
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"electron-dl": "^1.10.0",
"iview": "^2.9.1",
"node-notifier": "^5.1.2",
"vue-lazyload": "^1.0.6"
},
"build": {
"productName": "qiniuClient",
"appId": "com.github.willnewii.qiniuClient",
"compression": "maximum",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"win": {
"target": "nsis",
"icon": "./app/icons/icon.ico"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"title": "qiniu client ${version}"
},
"mac": {
"icon": "./app/icons/icon.icns"
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"icon": "./app/icons"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"directories": {
"output": "./release"
}
}
}