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.
Fix growl dependency via mocha (spotify#80)
* Fix growl dependency on mocha * Update package lock json
- Loading branch information
Kris Salvador
authored
Jun 8, 2018
1 parent
87c866c
commit c63fe92
Showing
3 changed files
with
79 additions
and
245 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,10 +2,18 @@ | |
"name": "reactochart", | ||
"description": "Reactochart - React Charts, graphs and data visualization", | ||
"author": "Dan Delany <[email protected]>", | ||
"contributors": ["Kris Salvador <[email protected]>"], | ||
"contributors": [ | ||
"Kris Salvador <[email protected]>" | ||
], | ||
"version": "0.4.7", | ||
"main": "index.js", | ||
"files": ["*.js", "*.js.map", "styles.css", "utils/", "src/"], | ||
"files": [ | ||
"*.js", | ||
"*.js.map", | ||
"styles.css", | ||
"utils/", | ||
"src/" | ||
], | ||
"engines": { | ||
"node": ">=4.0.0" | ||
}, | ||
|
@@ -18,20 +26,15 @@ | |
"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", | ||
|
@@ -73,7 +76,7 @@ | |
"json-loader": "^0.5.2", | ||
"less": "^3.0.4", | ||
"less-loader": "^4.0.5", | ||
"mocha": "^3.5.0", | ||
"mocha": "4.0.1", | ||
"prettier": "^1.12.1", | ||
"raw-loader": "^0.5.1", | ||
"react": "^15.6.1", | ||
|
Oops, something went wrong.