-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "node-downloader-helper",
"version": "2.1.9",
"description": "A simple http/s file downloader for node.js",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"scripts": {
"start": "npm run build && node ./example/index.js",
"lint": "npx eslint src",
"build": "npx babel --presets minify -d ./dist ./src",
"watch": "npx babel --watch ./src/index.js -o ./dist/index.js",
"test": "npm run lint && jest"
},
"pre-commit": [
"test"
],
"keywords": [
"nwjs",
"node",
"nodejs",
"node.js",
"electron",
"download",
"resumable",
"resume",
"http"
],
"author": "Jose De Gouveia",
"repository": {
"type": "git",
"url": "https://github.com/hgouveia/node-downloader-helper"
},
"bugs": {
"url": "https://github.com/hgouveia/node-downloader-helper/issues"
},
"homepage": "https://github.com/hgouveia/node-downloader-helper",
"license": "MIT",
"bin": {
"ndh": "bin/ndh"
},
"engines": {
"node": ">=14.18"
},
"devDependencies": {
"@types/node": "^14.14.31",
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"jest": "^24.9.0",
"pre-commit": "^1.2.2"
}
}