diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fda5ab3..2afd36dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.8 (2018-06-08) + +* [#80](https://github.com/spotify/reactochart/pull/80) Upgrade mocha to v4.0.1 to fix [growl dependency](https://github.com/tj/node-growl/pull/68) + ## 0.4.7 (2018-05-31) * [#73](https://github.com/spotify/reactochart/pull/73) Add step labeling to sankey diff --git a/package.json b/package.json index 4ffd6666..299c6b9a 100644 --- a/package.json +++ b/package.json @@ -2,18 +2,10 @@ "name": "reactochart", "description": "Reactochart - React Charts, graphs and data visualization", "author": "Dan Delany ", - "contributors": [ - "Kris Salvador " - ], - "version": "0.4.7", + "contributors": ["Kris Salvador "], + "version": "0.4.8", "main": "index.js", - "files": [ - "*.js", - "*.js.map", - "styles.css", - "utils/", - "src/" - ], + "files": ["*.js", "*.js.map", "styles.css", "utils/", "src/"], "engines": { "node": ">=4.0.0" }, @@ -26,15 +18,20 @@ "docs": "npm run make-docs && npm run build-docs", "build-lib": "npm run clean && babel src --out-dir ./ --source-maps", "build-css": "lessc ./styles/charts.less ./styles.css", - "build-docs": "BABEL_ENV=production webpack --config webpack.config.build.js", + "build-docs": + "BABEL_ENV=production webpack --config webpack.config.build.js", "make-docs": "node scripts/makeDocs.js", "clean": "node scripts/clean.js", "serve": "python -m SimpleHTTPServer", "test": "npm run test-jsdom-and-lint", - "test-files": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive", - "test-browser": "webpack-dev-server --config tests/browser/webpack.config.test.js", - "test-jsdom-and-lint": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec tests/eslint.spec.js", - "test-watch": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --watch --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec" + "test-files": + "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive", + "test-browser": + "webpack-dev-server --config tests/browser/webpack.config.test.js", + "test-jsdom-and-lint": + "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec tests/eslint.spec.js", + "test-watch": + "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --watch --compilers js:babel-register --require tests/jsdom/setup.js --recursive tests/jsdom/spec" }, "dependencies": { "d3": "^4.4.0",