-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 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
43
44
{
"name": "koa-devserver",
"version": "0.10.2",
"description": "A development server based on Koa HTTP framework",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bstefanescu/koa-devserver.git"
},
"keywords": [
"koa",
"development",
"dev",
"server",
"live",
"reload",
"browser"
],
"author": "Bogdan Setfanescu <bogdan@quandora.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bstefanescu/koa-devserver/issues"
},
"homepage": "https://github.com/bstefanescu/koa-devserver#readme",
"dependencies": {
"koa": "^2.11.0",
"koa-send": "^5.0.0",
"livereload": "^0.8.2",
"opener": "^1.5.1"
},
"devDependencies": {
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}