forked from sindresorhus/electron-dl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 875 Bytes
/
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
{
"name": "electron-dl",
"version": "1.12.0",
"description": "Simplified file downloads for your Electron app",
"license": "MIT",
"repository": "sindresorhus/electron-dl",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"scripts": {
"start": "electron run.js",
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"electron",
"app",
"file",
"download",
"downloader",
"progress"
],
"dependencies": {
"ext-name": "^5.0.0",
"lodash": "^4.17.10",
"pupa": "^1.0.0",
"unused-filename": "^1.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"cp-file": "^5.0.0",
"electron": "^1.3.3",
"minimist": "^1.2.0",
"node-static": "^0.7.9",
"pify": "^3.0.0",
"spectron": "^3.7.2",
"uuid": "^3.1.0",
"xo": "*"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}