Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-02-01 07:54:40 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-02-01 07:54:40 +0400
commit9fd9e36ee7e9c2f03f73d79fd39bfd35bab0f17f (patch)
tree82b4db48a5b0caa1afcc74e3311d222638ca7de1 /package.json
parentf63a9ef4eda7f6917db03aa06763794672d40901 (diff)
use context menu to restart, no need for nodemon
Diffstat (limited to 'package.json')
-rw-r--r--package.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/package.json b/package.json
index c28ec4e..cd2c7d6 100644
--- a/package.json
+++ b/package.json
@@ -20,13 +20,12 @@
"portfinder": "~0.2.1"
},
"devDependencies": {
- "nodemon": "1.x",
"tape": "2.x",
"watchify": "0.x"
},
"scripts": {
"build": "browserify --debug index.js > chrome/bundle.js",
- "watch": "watchify index.js -o chrome/bundle.js -dv & (sleep 1 && nodemon -w chrome/bundle.js ./bin/start.js)",
+ "watch": "watchify index.js -o chrome/bundle.js -dv & (sleep 1 && ./bin/start.js)",
"start": "npm run build && ./bin/start.js",
"test": "tape test/*.js"
},