-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
57 lines (57 loc) · 1.02 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
{
"name": "electron-dl",
"version": "3.5.1",
"description": "Simplified file downloads for your Electron app",
"license": "MIT",
"repository": "sindresorhus/electron-dl",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=12"
},
"scripts": {
"start": "electron run.js",
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"electron",
"app",
"file",
"download",
"downloader",
"progress"
],
"dependencies": {
"ext-name": "^5.0.0",
"pupa": "^2.0.1",
"unused-filename": "^2.1.0"
},
"devDependencies": {
"@types/node": "^13.1.4",
"ava": "^2.4.0",
"cp-file": "^7.0.0",
"electron": "^7.1.7",
"minimist": "^1.2.0",
"node-static": "^0.7.11",
"pify": "^4.0.1",
"spectron": "^9.0.0",
"tsd": "^0.17.0",
"typescript": "^4.4.3",
"uuid": "^8.3.2",
"xo": "^0.39.0"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}