Files
Notes/package.json
2019-03-11 17:36:29 +05:30

25 lines
899 B
JSON

{
"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 <sukantgujar@yahoo.com>",
"license": "MIT",
"scripts": {
"build:watch": "npx tsc -w",
"build:prod": "rimraf ./dist && cross-env NODE_ENV=production tsc -p ./tsconfig.production.json",
"run:examples:file": "node ./dist/examples/express-file-server/index.js"
},
"devDependencies": {
"@types/express": "^4.16.1",
"cross-env": "^5.2.0",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"express": "^4.16.4"
},
"dependencies": {}
}