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.
63 lines
1.6 KiB
63 lines
1.6 KiB
{
|
|
"name": "local-web-server",
|
|
"version": "1.0.0",
|
|
"description": "A simple web-server for productive front-end development",
|
|
"bin": {
|
|
"ws": "./bin/cli.js"
|
|
},
|
|
"main": "lib/local-web-server.js",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"dev",
|
|
"server",
|
|
"web",
|
|
"tool",
|
|
"front-end",
|
|
"development",
|
|
"cors",
|
|
"mime",
|
|
"rest"
|
|
],
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "tape test/*.js",
|
|
"docs": "jsdoc2md -t jsdoc2md/README.hbs -p list lib/*.js > README.md; echo",
|
|
"cover": "istanbul cover ./node_modules/.bin/tape test/*.js && cat coverage/lcov.info | coveralls && rm -rf coverage; echo"
|
|
},
|
|
"repository": "https://github.com/75lb/local-web-server",
|
|
"author": "Lloyd Brookes <75pound@gmail.com>",
|
|
"dependencies": {
|
|
"ansi-escape-sequences": "^2.2.1",
|
|
"array-back": "^1.0.2",
|
|
"command-line-args": "^2.0.2",
|
|
"config-master": "^2",
|
|
"debug": "^2.2.0",
|
|
"http-proxy": "^1.12.0",
|
|
"kcors": "^1.0.1",
|
|
"koa": "^2.0.0-alpha.3",
|
|
"koa-bodyparser": "^3.0.0",
|
|
"koa-compress": "^1.0.8",
|
|
"koa-conditional-get": "^1.0.3",
|
|
"koa-convert": "^1.1.0",
|
|
"koa-etag": "^2.1.0",
|
|
"koa-json": "^1.1.1",
|
|
"koa-morgan": "^1",
|
|
"koa-rewrite": "75lb/rewrite",
|
|
"koa-route": "^3",
|
|
"koa-send": "^3.1.0",
|
|
"koa-serve-index": "^1.1.0",
|
|
"koa-static": "^1.5.2",
|
|
"path-to-regexp": "^1.2.1",
|
|
"stream-log-stats": "^1.1.0",
|
|
"string-tools": "^1.0.0",
|
|
"test-value": "^1.0.1",
|
|
"typical": "^2.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"jsdoc-to-markdown": "^1.2.1",
|
|
"req-then": "^0.2.4",
|
|
"tape": "^4.2.2"
|
|
}
|
|
}
|