forked from koajs/static
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "koa-static",
"description": "Static file serving middleware for koa",
"repository": "koajs/static",
"version": "4.0.3",
"keywords": [
"koa",
"middleware",
"file",
"static",
"sendfile"
],
"files": [
"index.js"
],
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"koa": "^2.3.0",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
},
"license": "MIT",
"dependencies": {
"debug": "^2.6.8",
"koa-send": "^4.1.0"
},
"scripts": {
"lint": "eslint --fix .",
"test": "mocha --harmony --reporter spec",
"test-cov": "node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test-travis": "node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"
},
"engines": {
"node": ">= 7.6.0"
}
}