Skip to content

Commit

Permalink
Fix growl dependency via mocha (spotify#80)
Browse files Browse the repository at this point in the history
* Fix growl dependency on mocha

* Update package lock json
  • Loading branch information
Kris Salvador authored Jun 8, 2018
1 parent 87c866c commit c63fe92
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 245 deletions.
164 changes: 37 additions & 127 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 16 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
Loading

0 comments on commit c63fe92

Please sign in to comment.