You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
796 B
35 lines
796 B
{
|
|
"name": "koa-static",
|
|
"description": "Static file serving middleware for koa",
|
|
"repository": "koajs/static",
|
|
"version": "1.5.3",
|
|
"keywords": [
|
|
"koa",
|
|
"middleware",
|
|
"file",
|
|
"static",
|
|
"sendfile"
|
|
],
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"devDependencies": {
|
|
"istanbul-harmony": "0",
|
|
"koa": "1",
|
|
"mocha": "2",
|
|
"supertest": "1"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"debug": "^3.2.5",
|
|
"koa-send": "~2.0.1"
|
|
},
|
|
"scripts": {
|
|
"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"
|
|
},
|
|
"publishConfig": {
|
|
"tag": "latest-1"
|
|
}
|
|
}
|
|
|