-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
28 lines (28 loc) · 895 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
{
"name": "httpwatcher",
"version": "0.5.0",
"description": "Web server library and command-line utility for serving static files with live reload functionality",
"main": "index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"reconnectingwebsocket": "^1.0.0",
"uglify-js": "^2.7.5",
"webpack": "^1.14.0"
},
"scripts": {
"build": "webpack && uglifyjs ./httpwatcher/scripts/httpwatcher.bundle.js -c -m -o ./httpwatcher/scripts/httpwatcher.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thanethomson/httpwatcher.git"
},
"author": "Thane Thomson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thanethomson/httpwatcher/issues"
},
"homepage": "https://github.com/thanethomson/httpwatcher#readme"
}