forked from SukantGujar/express-partial-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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.0.1",
"main": "dist/index.js",
"repository": "https://github.com/TriliumNext/express-partial-content",
"author": "Elian Doran <[email protected]>",
"homepage": "https://github.com/TriliumNext/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 publish --access public",
"run:examples:file": "node ./dist/examples/express-file-server/index.js"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/TriliumNext/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/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",
"nyc": "^17.1.0",
"rimraf": "^2.6.3",
"sinon": "^7.2.7",
"typescript": "^5.7.2"
},
"peerDependencies": {
"express": "^4.16.4"
},
"packageManager": "[email protected]"
}