-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 947 Bytes
/
package.json
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
{
"name": "srvlr",
"version": "0.7.0",
"description": "Tiny HTTP server for development. Does livereload and opens in the browser.",
"main": "index.js",
"bin": {
"srvlr": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./index.js"
},
"author": "Luke Kavanagh <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kavanagh/srvlr"
},
"bugs": {
"url": "https://github.com/kavanagh/srvlr/issues"
},
"keywords": [
"livereload",
"HTTP Server"
],
"preferGlobal": true,
"license": "MIT",
"dependencies": {
"commander": "~2.2.0",
"compression": "~1.0.2",
"connect-inject": "~0.3.2",
"express": "~4.13.3",
"morgan": "~1.1.1",
"opener": "~1.4.1",
"portfinder": "~0.4.0",
"serve-index": "~1.7.2",
"serve-static": "~1.10.0",
"socket.io": "^1.7.1",
"watch": "~0.16.0"
}
}