Comparing version 1.1.8 to 1.2.0
{ | ||
"name": "trolly", | ||
"version": "1.1.8", | ||
"version": "1.2.0", | ||
"description": "A starter kit to get you up and running with a bunch of awesome new front-end technologies using Babel, Webpack, Mocha, Sinon, Chai, Karma, Coveralls, and ESLint without any framework dependencies.", | ||
@@ -19,7 +19,5 @@ "scripts": { | ||
"watch:browser": "./node_modules/.bin/karma start --auto-watch --no-single-run", | ||
"eslint:source": "eslint ./src/**/*.js", | ||
"eslint:fix": "eslint --fix ./src/**/*.js", | ||
"eslint:common": "eslint ./test/**/*.common.js", | ||
"eslint:server": "eslint ./test/**/*.server.js", | ||
"eslint:browser": "eslint ./test/**/*.browser.js", | ||
"eslint:source": "eslint src", | ||
"eslint:fix": "eslint --fix src", | ||
"eslint:test": "eslint test", | ||
"karma:firefox": "./node_modules/.bin/karma start --browsers=Firefox", | ||
@@ -58,2 +56,3 @@ "karma:chrome": "./node_modules/.bin/karma start --browsers=Chrome", | ||
"isparta", | ||
"istanbul", | ||
"es2015", | ||
@@ -60,0 +59,0 @@ "webpack", |
@@ -53,5 +53,3 @@ # Universal (isomorphic) boilerplate written in ES2015 for Node and the browser. | ||
* `npm run eslint:source` - Lint the source | ||
* `npm run eslint:common` - Lint the unit tests shared by Karma and Mocha | ||
* `npm run eslint:server` - Lint the unit tests for server | ||
* `npm run eslint:browser` - Lint the unit tests for browser | ||
* `npm run eslint:test` - Lint the unit tests | ||
* `npm run eslint:fix` - ESLint will try to fix as many issues as possible in your source files | ||
@@ -66,3 +64,6 @@ * `npm run clean` - Remove the coverage report and the *dist* folder | ||
* `npm run karma:chrome` - Run all unit tests with Karma & Chrome | ||
* `npm run karma:ie` - Run all unit tests with Karma & Internet Explorer | ||
* `npm run karma:ie` - Output unit tests with Karma & Internet Explorer | ||
* `npm run cov:server` - Print coverage report for server tests | ||
* `npm run cov:browser` - Output coverage report for browser tests | ||
* `npm run cov:chrome` - Output coverage report for browsers tests ( Chrome) | ||
* `npm run packages` - List installed packages | ||
@@ -93,3 +94,4 @@ * `npm run package:purge` - Remove all dependencies | ||
This library is set up to integrate with Coveralls, and will automatically publish your coverage report if you have created an account for your repo at **coveralls.io** | ||
This library is set up to integrate with Coveralls, and will automatically publish your coverage report if you have created an account for your repo at **coveralls.io**. | ||
Coverage reports are supported for both the browser and server unit tests. | ||
@@ -96,0 +98,0 @@ ## Package management |
21535
212