-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.98 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.98 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "fe-tools",
"app-name": "FE-Tools",
"version": "0.0.26",
"description": "前端工具集",
"main": "./src/main/app.babel.js",
"engines": {
"node": ">=4.4.2"
},
"electronVersion": "1.3.2",
"author": [{
"name": "luoye",
"email": "842891024@qq.com",
"github": "https://github.com/luoye-fe"
}, {
"name": "liangxiao",
"email": "495361365@qq.com",
"github": "https://github.com/xiaopili"
}],
"scripts": {
"dev:render": "node script/render.dev.babel.js --env=dev",
"dev:main": "node script/main.dev.babel.js --env=dev",
"build": "node script/main.build.babel.js --env=production",
"asar": "node script/asar.build.babel.js --env=production",
"changelog": "node script/changelog.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gomeplusFED/FET.git"
},
"homepage": "https://github.com/gomeplusFED/FET",
"bugs": "https://github.com/gomeplusFED/FET/issues",
"dependencies": {
"adm-zip-electron": "^0.4.7",
"babel-runtime": "^6.11.6",
"fix-path": "^2.0.0",
"fs-extra": "^0.30.0",
"minimist": "^1.2.0",
"node-fetch": "^1.6.0",
"request": "^2.76.0",
"sudo-prompt": "^6.2.0",
"vue": "^1.0.26",
"vue-electron": "^1.0.4",
"vue-resource": "^0.9.3"
},
"devDependencies": {
"asar": "^0.12.1",
"babel-core": "^6.13.2",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-latest": "^6.16.0",
"chalk": "^1.1.3",
"css-loader": "^0.23.1",
"electron": "1.3.2",
"electron-builder": "next",
"eslint": "^3.2.2",
"eslint-config-standard": "^5.3.5",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^1.5.3",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"inquirer": "^1.1.2",
"js-beautify": "^1.6.3",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"ora": "^0.3.0",
"qiniu": "^6.1.11",
"rd": "0.0.2",
"shelljs": "^0.7.3",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^8.5.3",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1"
},
"build": {
"productName": "FE-Tools",
"copyright": "Copyright © 2016 gomeplusFED",
"dmg": {
"title": "FE-Tool",
"icon": "./build/icon.icns",
"background": "./build/background.png",
"contents": [{
"x": 460,
"y": 250,
"type": "link",
"path": "/Applications"
}, {
"x": 150,
"y": 250,
"type": "file"
}]
},
"win": {
"target": ["nsis"],
"iconUrl": "https://github.com/gomeplusFED/FET/blob/master/build/icon.ico?raw=true"
},
"nsis": {
"runAfterFinish": false
}
},
"directories": {
"output": "./app/",
"app": "./dist/"
},
"license": "MIT"
}