forked from remy/nodemon
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
27 lines (27 loc) · 824 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
{
"name": "nodemon",
"homepage": "http://github.com/remy/nodemon",
"author": {
"name": "Remy Sharp",
"url": "http://github.com/remy"
},
"bin": { "nodemon" : "./nodemon.js" },
"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": "0.7.9",
"preferGlobal" : "true",
"licenses": [{
"type": "MIT",
"url": "http://rem.mit-license.org"
}],
"main": "./nodemon",
"scripts": {
"test": "mocha --ui bdd --reporter spec ./test/*.js"
},
"devDependencies": {
"connect": "*",
"mocha": "~1.9.0",
"should": "~1.2.2"
}
}