-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "send-stream",
"description": "Streaming file serving library with Range and conditional-GET support from file system or any streaming sources.",
"repository": "github:nicolashenry/send-stream",
"version": "2.7.0",
"keywords": [
"static",
"file",
"server",
"send",
"stream",
"partial",
"content",
"206",
"seek",
"buffer",
"range"
],
"author": "Nicolas HENRY <icewil@gmail.com>",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@regru/eslint-plugin-prefer-early-return": "1.0.0",
"@stylistic/eslint-plugin": "2.12.1",
"@types/compressible": "2.0.2",
"@types/content-disposition": "0.5.8",
"@types/express": "4.17.21",
"@types/koa": "2.15.0",
"@types/mime-types": "2.1.4",
"@types/mocha": "10.0.10",
"@types/range-parser": "1.2.7",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@typescript-eslint/type-utils": "8.18.1",
"@typescript-eslint/typescript-estree": "8.18.1",
"@typescript-eslint/utils": "8.18.1",
"byteranges": "1.1.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-sonarjs": "2.0.4",
"eslint-plugin-unicorn": "56.0.1",
"express": "4.21.2",
"fastify": "5.2.0",
"koa": "2.15.3",
"memfs": "4.15.0",
"mocha": "11.0.1",
"mongodb": "6.12.0",
"nyc": "17.1.0",
"rimraf": "6.0.1",
"supertest": "7.0.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"license": "MIT",
"dependencies": {
"@types/node": ">=18",
"compressible": "^2.0.18",
"content-disposition": "^0.5.3",
"mime-types": "^2.1.35",
"range-parser": "^1.2.1",
"tslib": "^2.1.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc -b",
"clean-build": "npm run clean && npm run build",
"watch": "tsc -b -w",
"prepublishOnly": "npm run test && npm run lint",
"prepack": "npm run clean-build",
"lint": "eslint . --ext .ts --max-warnings 0 --report-unused-disable-directives",
"lint-fix": "eslint . --ext .ts --max-warnings 0 --report-unused-disable-directives --fix",
"test-no-coverage": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha test/*.spec.ts",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json nyc mocha test/*.spec.ts",
"ci": "npm run build && npm run test && npm run lint",
"clean-ci": "npm run clean && npm run build && npm run test && npm run lint"
},
"main": "dist/src/send-stream.js",
"typings": "dist/src/send-stream.d.ts",
"files": [
"dist/src/*.js",
"dist/src/*.js.map",
"dist/src/*.d.ts"
],
"engines": {
"node": ">=18.12.0"
}
}