chore(install): cleanup

- `package.json`: explicit path to `node_modules/.bin` isn't needed
since npm prepends it to `PATH`. See [nmp scripts
doc](https://docs.npmjs.com/misc/scripts#path).
- `.bowerrc`: [Bower's default
directory](http://bower.io/docs/config/#directory) is
'bower_components', hence no need to explicitly set it to this value.
This commit is contained in:
Patrice Chalin 2015-03-14 08:50:33 -07:00 committed by vsavkin
parent 6fe294ff2b
commit 87a7e7e677
2 changed files with 1 additions and 4 deletions

View File

@ -1,3 +0,0 @@
{
"directory": "bower_components/"
}

View File

@ -21,7 +21,7 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "./node_modules/.bin/bower install"
"postinstall": "bower install"
},
"dependencies": {
"es6-module-loader": "^0.9.2",