ledown
Version:
A library for nodejs to download http large file in pauseable and resumable way
79 lines (78 loc) • 1.89 kB
JSON
{
"name": "ledown",
"version": "1.0.5",
"description": "A library for nodejs to download http large file in pauseable and resumable way",
"main": "dist/main.js",
"module": "dist/main.es.js",
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"lint": "standard --verbose | snazzy",
"test": "npm run lint && npm run mocha && npm run cleanup",
"mocha": "nyc mocha",
"cleanup": "rm -rf ./test/tmp/*",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run build"
},
"keywords": [
"download",
"resumable",
"pauseable",
"breakpoint",
"http"
],
"author": "chn.will.liu@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.31",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint-plugin-flowtype": "^2.35.1",
"express": "^4.15.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.2.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
},
"standard": {
"envs": [
"mocha"
],
"ignore": [
"node_modules/**",
"dist/**"
],
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
},
"dependencies": {
"uuid": "^3.1.0"
},
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/liuxiaole/ledown.git"
},
"engines": {
"node": ">=8.0"
},
"nyc": {
"require": [
"babel-core/register"
],
"sourceMap": false,
"instrument": false
}
}