-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
72 lines (72 loc) · 1.53 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
{
"name": "@koa/send",
"version": "6.0.0",
"description": "Transfer static files",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"koa",
"file",
"static",
"send-file"
],
"repository": {
"type": "git",
"url": "git://github.com/koajs/send.git"
},
"contributors": [
{
"name": "Imed Jaberi",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/brotli": "^1.3.1",
"@types/jest": "^29.5.0",
"@types/koa": "^2.13.6",
"@types/node": "^20.3.2",
"@types/resolve-path": "^1.4.0",
"@types/supertest": "^2.0.12",
"brotli": "^1.3.3",
"eslint-config-xo-lass": "^2.0.1",
"jest": "^29.5.0",
"koa": "^2.14.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3",
"xo": "^0.54.2"
},
"dependencies": {
"http-errors": "^2.0.0",
"resolve-path": "^1.4.0"
},
"scripts": {
"build": "tsup",
"lint": "xo",
"lint:fix": "xo --fix",
"test": "jest --detectOpenHandles",
"test-ci": "npm run test -- --coverage",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">= 16"
},
"bugs": {
"url": "https://github.com/koajs/send/issues"
},
"homepage": "https://github.com/koajs/send"
}