-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "koa-static-resolver",
"version": "1.0.6",
"description": "Koa static file resolver, dirs, default index, path replace, cache, livereload, gzip",
"main": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"scripts": {
"dev": "node ./test/server.js",
"test": "npx mocha ./test/test.js",
"patch": "npm run test && sf publish patch -r"
},
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cenfun/koa-static-resolver.git"
},
"dependencies": {},
"devDependencies": {
"axios": "^1.6.8",
"eslint": "^8.57.0",
"eslint-config-plus": "^1.0.6",
"koa": "^2.15.1",
"mocha": "^10.3.0"
}
}