package.json: remove unnecessary `./node_modules/.bin` from `scripts.test`

`./node_modules/.bin` is automatically added to PATH when running npm commands,
so there's no need to explicitly mention it.
This commit is contained in:
George Miroshnykov 2014-05-20 17:24:25 +03:00
Родитель 80beb19af2
Коммит 2dd59c14a1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,6 +19,6 @@
"grunt-filerev": "^0.2.1"
},
"scripts": {
"test": "./node_modules/.bin/karma start webapp/config/karma.conf.js --single-run --browsers Firefox"
"test": "karma start webapp/config/karma.conf.js --single-run --browsers Firefox"
}
}