-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 794 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 794 Bytes
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
{
"name": "tilleps-localhost",
"version": "0.1.0",
"description": "A simple HTTP server with LiveReload",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/tilleps/node-localhost.git"
},
"keywords": [
"http",
"server",
"simple",
"livereload"
],
"author": "Eugene Song <tilleps@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tilleps/node-localhost/issues"
},
"homepage": "https://github.com/tilleps/node-localhost",
"dependencies": {
"colors": "^1.0.1",
"commander": "^2.3.0",
"express": "^4.9.5",
"tiny-lr": "^0.1.4"
},
"preferGlobal": true,
"bin": {
"localhost": "./index.js"
}
}