Notes/package.json

56 lines
2.1 KiB
JSON

{
"name": "@triliumnext/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": "1.22.22",
"main": "dist/index.js",
"repository": "https://github.com/SukantGujar/express-partial-content",
"author": "Sukant Gujar <sukantgujar@yahoo.com>",
"homepage": "https://sukantgujar.github.io/express-partial-content/",
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist",
"copy-assets": "copyfiles -E -u 1 src/examples/sample-files/* dist/",
"test": "tsc && nyc --reporter=text mocha dist/**/*.spec.js",
"build:watch": "npx tsc -w",
"build:dev": "npx tsc && yarn copy-assets",
"build:prod": "yarn clean && cross-env NODE_ENV=production tsc -p ./tsconfig.production.json",
"push": "yarn test && yarn build:prod && yarn npm publish",
"run:examples:file": "node ./dist/examples/express-file-server/index.js",
"run:examples:mongo": "node ./dist/examples/express-mongo-server/index.js"
},
"bugs": {
"email": "sukantgujar@yahoo.com",
"url": "https://github.com/SukantGujar/express-partial-content/issues"
},
"keywords": [
"partial-content",
"206",
"stream",
"typescript"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/mongodb": "^3.1.22",
"@types/sinon": "^7.0.9",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.15.3",
"express": "^4.16.4",
"mocha": "^6.0.2",
"mongodb": "^3.1.13",
"nyc": "^17.1.0",
"rimraf": "^2.6.3",
"sinon": "^7.2.7",
"typescript": "^5.7.2"
},
"peerDependencies": {
"express": "^4.16.4"
},
"packageManager": "yarn@4.4.1+sha512.f825273d0689cc9ead3259c14998037662f1dcd06912637b21a450e8da7cfeb4b1965bbee73d16927baa1201054126bc385c6f43ff4aa705c8631d26e12460f1"
}