forked from spotify/reactochart
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version and changelog (spotify#81)
- Loading branch information
Kris Salvador
authored
Jun 8, 2018
1 parent
c63fe92
commit da189c8
Showing
2 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,10 @@ | |
"name": "reactochart", | ||
"description": "Reactochart - React Charts, graphs and data visualization", | ||
"author": "Dan Delany <[email protected]>", | ||
"contributors": [ | ||
"Kris Salvador <[email protected]>" | ||
], | ||
"version": "0.4.7", | ||
"contributors": ["Kris Salvador <[email protected]>"], | ||
"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", | ||
|