aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@shellscape/koa-static/package.json
diff options
context:
space:
mode:
authorruki <waruqi@gmail.com>2018-11-08 00:38:48 +0800
committerruki <waruqi@gmail.com>2018-11-07 21:53:09 +0800
commit26105034da4fcce7ac883c899d781f016559310d (patch)
treec459a5dc4e3aa0972d9919033ece511ce76dd129 /node_modules/@shellscape/koa-static/package.json
parent2c77f00f1a7ecb6c8192f9c16d3b2001b254a107 (diff)
downloadxmake-docs-26105034da4fcce7ac883c899d781f016559310d.tar.gz
xmake-docs-26105034da4fcce7ac883c899d781f016559310d.zip
switch to vuepress
Diffstat (limited to 'node_modules/@shellscape/koa-static/package.json')
-rw-r--r--node_modules/@shellscape/koa-static/package.json53
1 files changed, 53 insertions, 0 deletions
diff --git a/node_modules/@shellscape/koa-static/package.json b/node_modules/@shellscape/koa-static/package.json
new file mode 100644
index 00000000..24a4d5b9
--- /dev/null
+++ b/node_modules/@shellscape/koa-static/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "@shellscape/koa-static",
+ "description": "Static file serving middleware for koa",
+ "repository": "shellscape/koa-static",
+ "version": "4.0.5",
+ "keywords": [
+ "koa",
+ "middleware",
+ "file",
+ "static",
+ "sendfile"
+ ],
+ "files": [
+ "index.js",
+ "legacy/index.js"
+ ],
+ "publishConfig": {
+ "access": "public"
+ },
+ "devDependencies": {
+ "@babel/cli": "^7.0.0-beta.39",
+ "@babel/core": "^7.0.0-beta.39",
+ "@babel/polyfill": "^7.0.0-beta.39",
+ "@babel/preset-env": "^7.0.0-beta.39",
+ "@babel/register": "^7.0.0-beta.39",
+ "babel-plugin-module-resolver": "^3.0.0",
+ "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",
+ "@shellscape/koa-send": "^4.1.0"
+ },
+ "scripts": {
+ "lint": "eslint --fix .",
+ "prepublishOnly": "babel index.js --out-file legacy/index.js",
+ "test": "npm run prepublishOnly && 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": ">= 6"
+ }
+}