Skip to content
Snippets Groups Projects
Commit fc79d70a authored by Steffen Lindner's avatar Steffen Lindner
Browse files

Add bower as npm install deps

parent 1c80cdc5
No related branches found
No related tags found
No related merge requests found
......@@ -80,9 +80,10 @@ Just clone this repo into your apps directory ([ownCloud core installation neede
curl -sS https://getcomposer.org/installer | php
php composer.phar install
```
Furthermore, to fetch all JavaScript dependencies using [Bower](http://bower.io/#install-bower) run
Furthermore, to fetch all JavaScript dependencies using [Npm](https://www.npmjs.com/) run
```bash
bower install
npm install
npm run-script bower_deps
```
### Resetting the app
......
......@@ -7,7 +7,8 @@
"test": "tests"
},
"scripts": {
"test": "./node_modules/.bin/jshint . && ./node_modules/.bin/jsxhint ."
"test": "./node_modules/.bin/jshint . && ./node_modules/.bin/jsxhint .",
"bower_deps": "./node_modules/.bin/bower install"
},
"repository": {
"type": "git",
......@@ -28,6 +29,7 @@
"grunt-jscs": "^1.8.0",
"jscs-jsdoc": "^1.0.1",
"jshint": "^2.7.0",
"jsxhint": "^0.14.0"
"jsxhint": "^0.14.0",
"bower": "^1.5.2"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment