12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "egg-static",
- "version": "2.2.0",
- "description": "static server plugin for egg",
- "eggPlugin": {
- "name": "static"
- },
- "files": [
- "app",
- "config",
- "app.js"
- ],
- "repository": {
- "type": "git",
- "url": "git+https://github.com/eggjs/egg-static.git"
- },
- "keywords": [
- "egg",
- "egg-plugin",
- "eggPlugin",
- "static"
- ],
- "dependencies": {
- "is-type-of": "^1.2.1",
- "koa-compose": "^4.1.0",
- "koa-range": "^0.3.0",
- "koa-static-cache": "^5.1.2",
- "mkdirp": "^0.5.1",
- "ylru": "^1.2.1"
- },
- "devDependencies": {
- "autod": "^3.0.1",
- "egg": "^2.16.0",
- "egg-bin": "^4.11.0",
- "egg-ci": "^1.11.0",
- "egg-mock": "^3.21.0",
- "eslint": "^5.13.0",
- "eslint-config-egg": "^7.1.0",
- "mz": "^2.7.0"
- },
- "engines": {
- "node": ">=8.0.0"
- },
- "scripts": {
- "lint": "eslint .",
- "test": "npm run lint -- --fix && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run lint && npm run cov",
- "autod": "autod"
- },
- "ci": {
- "version": "8, 9",
- "license": true
- },
- "author": "dead_horse",
- "license": "MIT"
- }
|