55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
}
|
|
} |