-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "stream-static",
"version": "1.0.1",
"description": "A composable, stream-based version of the 'serve-static', 'compression', 'send' modules.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "src/index.ts",
"files": [
"dist/*.js",
"src/*.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/sbquinlan/stream-static.git"
},
"author": "Sean Quinlan <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.13.2"
},
"scripts": {
"clean": "rm dist/*",
"build": "tsc",
"prepublish": "yarn build",
"test": "yarn build && mocha --reporter spec --bail --check-leaks test/"
},
"dependencies": {
"etag": "^1.8.1",
"mime": "^3.0.0",
"range-parser": "^1.2.1",
"statuses": "^2.0.1",
"vary": "^1.1.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/etag": "^1.8.1",
"@types/mime": "^2.0.3",
"@types/node": "^17.0.34",
"@types/range-parser": "^1.2.4",
"@types/statuses": "^2.0.0",
"@types/vary": "^1.1.0",
"after": "^0.8.2",
"bytes": "^3.1.2",
"mocha": "^10.0.0",
"supertest": "^6.2.3",
"typescript": "^4.6.4"
}
}