forked from fgnass/node-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 926 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 926 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
36
37
38
39
40
41
42
43
44
45
{
"name": "node-dev",
"version": "2.7.1",
"description": "Restarts your app when files are modified",
"keywords": [
"restart",
"reload",
"supervisor",
"monitor",
"watch"
],
"author": "Felix Gnass",
"contributors": [
"Daniel Gasienica <daniel@gasienica.ch> (https://github.com/gasi/)"
],
"repository": {
"type": "git",
"url": "http://github.com/fgnass/node-dev.git"
},
"license": "MIT",
"bin": {
"node-dev": "./bin/node-dev"
},
"main": "./lib",
"preferGlobal": true,
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "tap test/*.js"
},
"dependencies": {
"dateformat": "~1.0.4-1.2.3",
"dynamic-dedupe": "^0.2.0",
"filewatcher": "~1.1.1",
"minimist": "^1.1.3",
"node-notifier": "^4.0.2",
"resolve": "^1.0.0"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"tap": "^1.3.2",
"touch": "^1.0.0"
}
}