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-24 03:37:30 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-02-24 03:37:30 +0400
commitc5019d1200a8eccb30a58f7566f3ea003c47674c (patch)
treef9cd5d7dc5cfa22c8c213404d1122b67b310d5e0 /package.json
parentf4f0e702a4f1a48ffa56e565a9ee38045629a42f (diff)
hook up ui! (eliminate handlebars - it didn't help enough)
Diffstat (limited to 'package.json')
-rw-r--r--package.json16
1 files changed, 7 insertions, 9 deletions
diff --git a/package.json b/package.json
index 97e1921..e732025 100644
--- a/package.json
+++ b/package.json
@@ -38,10 +38,10 @@
"keymaster": "git://github.com/feross/keymaster",
"magnet-uri": "1.x",
"read-torrent": "^0.2.0",
- "speedometer": "^0.1.2"
+ "speedometer": "^0.1.2",
+ "brfs": "^0.2.1"
},
"devDependencies": {
- "handlebars": "^2.0.0-alpha.1",
"nib": "^1.0.2",
"nodemon": "^1.0.15",
"stylus": "^0.42.2",
@@ -65,16 +65,14 @@
"url": "git://github.com/feross/webtorrent.git"
},
"scripts": {
- "build": "npm run build-html && npm run build-css && npm run build-js",
- "build-css": "stylus --use nib css/main.styl --out chrome/ -c && ./bin/post-build.js",
- "build-html": "handlebars views --commonjs handlebars --extension html --output views/compiled.js",
- "build-js": "browserify --debug index.js > chrome/bundle.js",
+ "build": "npm run build-css && npm run build-js",
+ "build-css": "stylus --use nib css/main.styl --compress --out chrome/ && ./bin/post-build.js",
+ "build-js": "browserify --transform brfs --debug index.js > chrome/bundle.js",
"prepublish": "npm run build",
"start": "npm run build && ./bin/start.js",
"test": "tape test/*.js",
- "watch": "npm run watch-js & npm run watch-css & npm run watch-html",
+ "watch": "npm run watch-js & npm run watch-css",
"watch-css": "stylus --use nib css/main.styl --out chrome/ --watch",
- "watch-html": "nodemon --watch views --ext html --exec \"npm run build-html\"",
- "watch-js": "watchify index.js -o chrome/bundle.js --debug --verbose"
+ "watch-js": "watchify --transform brfs index.js --outfile chrome/bundle.js --debug --verbose"
}
}