-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 952 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 952 Bytes
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
{
"name": "koa-serve-list",
"version": "1.0.1",
"description": "Serve directory listings for koa",
"author": "Fangdun Cai <cfddream@gmail.com>",
"license": "MIT",
"repository": "koa-modules/serve-list",
"keywords": [
"serve",
"index",
"list",
"listings",
"static"
],
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
},
"dependencies": {
"serve-index": "^1.7.2"
},
"devDependencies": {
"after": "^0.x",
"isparta": "^4.x",
"koa": "^2.0.0-alpha.3",
"mocha": "^2.x",
"supertest": "^1.x"
},
"engines": {
"node": ">= 4"
},
"files": [
"History.md",
"LICENSE",
"README.md",
"index.js"
]
}