-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "reloadify",
"version": "0.2.2",
"description": "A live-reload NPM module that works well with your raw Node / Express servers. CLI version available as well.",
"main": "server.js",
"bin": "bin/cli.js",
"scripts": {
"test": "node test/functional.js",
"start": "node server.js",
"lint": "eslint lib/*.js examples/*.js",
"precommit": "npm run lint"
},
"author": "Alexandru Vladutu <alexandru.vladutu@gmail.com> (http://careers.stackoverflow.com/alessioalex)",
"repository": {
"type": "git",
"url": "https://github.com/alessioalex/reloadify.git"
},
"license": "MIT",
"keywords": [
"live",
"reload",
"live-reload",
"livereload",
"sync",
"refresh"
],
"dependencies": {
"chokidar": "^1.0.2",
"debug-app": "^1.0.0",
"dezalgo": "^1.0.3",
"errto": "^0.2.1",
"generic-middleware": "^0.1.1",
"get-port": "^1.0.0",
"inject-html": "^1.0.1",
"lodash.throttle": "^3.0.3",
"minimist": "^1.1.1",
"on-finished": "^2.3.0",
"sendevent": "~1.0.2",
"serve-index": "^1.7.2",
"serve-static": "^1.10.0",
"uglify-js": "~2.4.15"
},
"devDependencies": {
"body-parser": "^1.15.2",
"chromedriver": "^2.21.2",
"eslint": "^0.23.0",
"husky": "^0.8.1",
"post-json": "^0.3.1",
"selenium-webdriver": "^2.46.1",
"server-destroy": "^1.0.1",
"tape": "^4.0.0"
}
}