0d1ae5a62c
* build(deps-dev): bump webpack-cli from 5.1.4 to 6.0.1 in /javascript Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 5.1.4 to 6.0.1. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@5.1.4...webpack-cli@6.0.1) --- updated-dependencies: - dependency-name: webpack-cli dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps): bump react, react-dom and react-test-renderer Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) and [react-test-renderer](https://github.com/facebook/react/tree/HEAD/packages/react-test-renderer). These dependencies needed to be updated together. Updates `react` from 18.3.1 to 19.0.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react) Updates `react-dom` from 18.3.1 to 19.0.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react-dom) Updates `react-test-renderer` from 18.3.1 to 19.0.0 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react-test-renderer) --- updated-dependencies: - dependency-name: react dependency-type: direct:production update-type: version-update:semver-major - dependency-name: react-dom dependency-type: direct:production update-type: version-update:semver-major - dependency-name: react-test-renderer dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump babel-loader from 9.2.1 to 10.0.0 in /javascript Bumps [babel-loader](https://github.com/babel/babel-loader) from 9.2.1 to 10.0.0. - [Release notes](https://github.com/babel/babel-loader/releases) - [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel-loader/compare/v9.2.1...v10.0.0) --- updated-dependencies: - dependency-name: babel-loader dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * add Makefile * update tests * update stuff * update monthly testing --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "shapjs",
|
|
"version": "0.35.0",
|
|
"description": "Web based visualizations of SHAP explanations.",
|
|
"main": "build/index.js",
|
|
"files": [
|
|
"build/index.js",
|
|
"visualizers"
|
|
],
|
|
"scripts": {
|
|
"test": "jest --verbose ./tests",
|
|
"dev": "webpack-dev-server --mode development --open",
|
|
"build": "webpack --mode production",
|
|
"pub": "npm run build && npm publish"
|
|
},
|
|
"author": "Scott Lundberg",
|
|
"repository": "https://github.com/shap/shap",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"d3": "^7",
|
|
"lodash": "^4",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/preset-env": "^7.22.9",
|
|
"@babel/preset-react": "^7.22.5",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/react": "^16.2.0",
|
|
"babel-jest": "^29.6.2",
|
|
"babel-loader": "^10.0.0",
|
|
"jest": "^29.6.1",
|
|
"jest-environment-jsdom": "^29.6.1",
|
|
"react-test-renderer": "^19.0.0",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^6.0.1",
|
|
"webpack-dev-server": "^5.0.2"
|
|
}
|
|
}
|