-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
{
"name": "@ladjs/koa-better-static",
"description": "Static file serving middleware for koa",
"version": "3.0.0",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/ladjs/koa-better-static/issues",
"email": "[email protected]"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"dependencies": {
"debug": "*",
"mime-types": "^2.1.35",
"resolve-path": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"ava": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^9.1.7",
"koa": "^2.16.0",
"koa-mount": "^4.0.0",
"lint-staged": "^15.4.3",
"nyc": "^17.1.0",
"remark-cli": "11.0.0",
"remark-preset-github": "^4.0.4",
"supertest": "^7.0.0",
"xo": "0.56.0"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"send.js"
],
"homepage": "https://github.com/ladjs/koa-better-static",
"keywords": [
"assets",
"file",
"files",
"koa",
"middleware",
"send",
"sendfile",
"serve",
"server",
"static",
"static-serve"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ladjs/koa-better-static"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"lint": "xo --fix && remark . -qfo && fixpack",
"nyc": "cross-env NODE_ENV=test nyc ava",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run nyc"
}
}