Comparing version 0.0.11 to 0.0.12
@@ -0,1 +1,4 @@ | ||
# v.0.0.11 | ||
- fixed issue where the coverage report didn't work or reported wrong lines | ||
# v.0.0.9 | ||
@@ -2,0 +5,0 @@ - various bug fixes |
{ | ||
"name": "havunen", | ||
"license": "MIT", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"author": { | ||
@@ -36,2 +36,3 @@ "name": "KFlash", | ||
"watch:server": "npm run test:server -- --watch", | ||
"lint": "npm run lint:source && npm run lint:tests", | ||
"lint:source": "eslint src", | ||
@@ -42,6 +43,6 @@ "lint:tests": "eslint test/specs", | ||
"packages": "npm list --depth=0", | ||
"package:purge": "rm -rf node_modules", | ||
"package:reinstall": "npm run package:purge && npm install", | ||
"package:check": "ncu", | ||
"package:upgrade": "ncu -u", | ||
"packages:purge": "rm -rf node_modules", | ||
"packages:reinstall": "npm run package:purge && npm install", | ||
"packages:check": "ncu", | ||
"packages:upgrade": "ncu -u", | ||
"postpublish": "git push origin master --follow-tags" | ||
@@ -90,3 +91,2 @@ }, | ||
"jsdom": "^8.3.1", | ||
"istanbul": "gotwarlost/istanbul.git#source-map", | ||
"karma": "^0.13.22", | ||
@@ -104,5 +104,2 @@ "karma-babel-preprocessor": "^6.0.1", | ||
"karma-chai-as-promised": "^0.1.2", | ||
"karma-cli": "^0.1.2", | ||
"webpack-dev-server": "^1.14.1", | ||
"glob": "^7.0.3", | ||
"pre-commit": "^1.1.2", | ||
@@ -112,4 +109,3 @@ "mkdirp": "^0.5.1", | ||
"cross-env": "1.0.7", | ||
"npm-check-updates": "^2.6.1", | ||
"lolex": "^1.4.0" | ||
"npm-check-updates": "^2.6.1" | ||
}, | ||
@@ -116,0 +112,0 @@ "pre-commit": [ |
@@ -5,2 +5,3 @@ ### ES2015 boilerplate for creating libraries with the Rollup. | ||
[![Circle CI](https://circleci.com/gh/Kflash/havunen/tree/master.svg?style=shield)](https://circleci.com/gh/Kflash/havunen/tree/master) | ||
[![Coverage Status](https://coveralls.io/repos/github/Kflash/havunen/badge.svg?branch=master)](https://coveralls.io/github/Kflash/havunen?branch=master) | ||
[![npm version](https://badge.fury.io/js/havunen.svg)](https://badge.fury.io/js/havunen) | ||
@@ -43,2 +44,3 @@ [![npm](https://img.shields.io/npm/l/express.svg?style=flat-square)](https://github.com/kflash/havunen/blob/master/LICENSE.md) | ||
* `npm run build:dev` - Build task that generate a non-minified script | ||
* `npm run lint:source` - Lint both source and unit test files | ||
* `npm run lint:source` - Lint the source | ||
@@ -56,6 +58,6 @@ * `npm run lint:tests` - Lint the unit tests | ||
* `npm run packages` - List installed packages | ||
* `npm run package:purge` - Remove all dependencies | ||
* `npm run package:reinstall` - Reinstall all dependencies | ||
* `npm run package:check` - shows a list over dependencies with a higher version number then the current one - if any | ||
* `npm run package:upgrade` - Automaticly upgrade all devDependencies & dependencies, and update package.json | ||
* `npm run packages:purge` - Remove all dependencies | ||
* `npm run packages:reinstall` - Reinstall all dependencies | ||
* `npm run packages:check` - shows a list over dependencies with a higher version number then the current one - if any | ||
* `npm run packages:upgrade` - Automaticly upgrade all devDependencies & dependencies, and update package.json | ||
@@ -62,0 +64,0 @@ ## Testing environment |
import foo from './flow'; | ||
export default { | ||
foo | ||
} | ||
}; |
13845
55
145