-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from RhoInc/dev-v3.4.0
AE Explorer v3.4.0
- Loading branch information
Showing
16 changed files
with
645 additions
and
635 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,54 +1,54 @@ | ||
{ | ||
"name": "aeexplorer", | ||
"version": "3.3.5", | ||
"description": "An interactive tool that allows users to dynamically query adverse event data in real time.", | ||
"keywords": [ | ||
"adverse", | ||
"events", | ||
"interactive", | ||
"aes", | ||
"data", | ||
"visualization" | ||
], | ||
"homepage": "https://github.com/rhoinc/aeexplorer#readme", | ||
"license": "ISC", | ||
"author": "Rho, Inc.", | ||
"main": "build/aeTable.js", | ||
"module": "./src/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/rhoinc/aeexplorer.git" | ||
}, | ||
"scripts": { | ||
"build": "npm audit fix && npm run bundle && npm run format && npm run minify && npm run build-md", | ||
"build-md": "node ./scripts/configuration-markdown.js", | ||
"bundle": "rollup -c", | ||
"format": "npm run format-src && npm run format-bundle && npm run format-examples", | ||
"format-examples": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./test-page/**/*.js\"", | ||
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./build/aeTable.js\"", | ||
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"", | ||
"minify": "npm run minifyjs && npm run minifycss", | ||
"minifycss": "cleancss -o css/aeTable.min.css css/aeTable.css", | ||
"minifyjs": "uglifyjs build/aeTable.js > build/aeTable.min.js", | ||
"test-page": "start chrome ./test-page/index.html && start firefox ./test-page/index.html && start iexplore file://%CD%/test-page/index.html", | ||
"watch": "rollup -c -w" | ||
}, | ||
"devDependencies": { | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-preset-env": "^1.7.0", | ||
"clean-css-cli": "^4.2.1", | ||
"prettier": "1.4.4", | ||
"rollup": "^0.66.6", | ||
"rollup-plugin-babel": "^2.7.1", | ||
"uglify-js": "^2.5.0" | ||
}, | ||
"dependencies": { | ||
"d3": "~3" | ||
}, | ||
"optionalDependencies": { | ||
"webcharts": ">1.9" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/rhoinc/aeexplorer/issues" | ||
} | ||
"name": "aeexplorer", | ||
"version": "3.4.0", | ||
"description": "An interactive tool that allows users to dynamically query adverse event data in real time.", | ||
"keywords": [ | ||
"adverse", | ||
"events", | ||
"interactive", | ||
"aes", | ||
"data", | ||
"visualization" | ||
], | ||
"homepage": "https://github.com/rhoinc/aeexplorer#readme", | ||
"license": "ISC", | ||
"author": "Rho, Inc.", | ||
"main": "build/aeTable.js", | ||
"module": "./src/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/rhoinc/aeexplorer.git" | ||
}, | ||
"scripts": { | ||
"build": "npm audit fix && npm run bundle && npm run format && npm run minify && npm run build-md", | ||
"build-md": "node ./scripts/configuration-markdown.js", | ||
"bundle": "rollup -c", | ||
"format": "npm run format-src && npm run format-bundle && npm run format-examples", | ||
"format-examples": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./test-page/**/*.js\"", | ||
"format-bundle": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./build/aeTable.js\"", | ||
"format-src": "prettier --print-width=100 --tab-width=4 --single-quote --write \"./src/**/*.js\"", | ||
"minify": "npm run minifyjs && npm run minifycss", | ||
"minifycss": "cleancss -o css/aeTable.min.css css/aeTable.css", | ||
"minifyjs": "uglifyjs build/aeTable.js > build/aeTable.min.js", | ||
"test-page": "start chrome ./test-page/index.html && start firefox ./test-page/index.html && start iexplore file://%CD%/test-page/index.html", | ||
"watch": "rollup -c -w" | ||
}, | ||
"devDependencies": { | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-preset-env": "^1.7.0", | ||
"clean-css-cli": "^4.2.1", | ||
"prettier": "1.4.4", | ||
"rollup": "^0.66.6", | ||
"rollup-plugin-babel": "^2.7.1", | ||
"uglify-js": "^2.5.0" | ||
}, | ||
"dependencies": { | ||
"d3": "~3" | ||
}, | ||
"optionalDependencies": { | ||
"webcharts": ">1.9" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/rhoinc/aeexplorer/issues" | ||
} | ||
} |
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
Oops, something went wrong.