forked from remy/nodemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
54
55
{
"name": "nodemon",
"homepage": "http://nodemon.io",
"author": {
"name": "Remy Sharp",
"url": "http://github.com/remy"
},
"bin": {
"nodemon": "./bin/nodemon.js"
},
"engines": {
"node": ">=0.8"
},
"repository": {
"type": "git",
"url": "http://github.com/remy/nodemon.git"
},
"description": "Simple monitor script for use during development of a node.js app.",
"keywords": [
"monitor",
"development",
"restart",
"autoload",
"reload",
"terminal"
],
"version": "1.3.0-5",
"preferGlobal": "true",
"licenses": [
{
"type": "MIT",
"url": "http://rem.mit-license.org"
}
],
"main": "./lib/nodemon",
"scripts": {
"coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
"test": "node_modules/.bin/mocha --timeout 30000 --ui bdd test/**/*.test.js",
":test": "for FILE in test/**/*.test.js; do echo $FILE; ./node_modules/.bin/mocha --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; done",
"web": "node web"
},
"devDependencies": {
"coffee-script": "~1.7.1",
"connect": "~2.19.1",
"istanbul": "~0.2.10",
"mocha": "^2.0.1",
"should": "~4.0.0",
"touch": "~0.0.3"
},
"dependencies": {
"minimatch": "~0.3.0",
"ps-tree": "~0.0.3",
"update-notifier": "~0.1.8"
}
}