{ "name": "express-partial-content", "description": "A partial content handler implementation for any readable stream with Express. Based on this blog post: https://www.codeproject.com/Articles/813480/HTTP-Partial-Content-In-Node-js.", "version": "0.1.0", "main": "dist/index.js", "repository": "ssh://git@github.com-sukantgujar/SukantGujar/express-partial-content", "author": "sukantgujar ", "license": "MIT", "scripts": { "clean": "rimraf ./dist", "test": "tsc && mocha dist/**/*.spec.js", "build:watch": "npx tsc -w", "build:prod": "yarn clean && cross-env NODE_ENV=production tsc -p ./tsconfig.production.json", "push": "yarn test && yarn build:prod && yarn publish", "run:examples:file": "node ./dist/examples/express-file-server/index.js" }, "keywords": [ "partial-content", "206", "stream" ], "devDependencies": { "@types/chai": "^4.1.7", "@types/express": "^4.16.1", "@types/mocha": "^5.2.6", "@types/sinon": "^7.0.9", "chai": "^4.2.0", "cross-env": "^5.2.0", "express": "^4.16.4", "mocha": "^6.0.2", "rimraf": "^2.6.3", "sinon": "^7.2.7", "typescript": "^3.3.3333" }, "peerDependencies": { "express": "^4.16.4" }, "dependencies": {} }