2018-12-19 16:16:11 +03:00
|
|
|
{
|
|
|
|
"name": "d3tooltip",
|
2022-01-25 03:26:20 +03:00
|
|
|
"version": "2.1.0",
|
2018-12-19 16:16:11 +03:00
|
|
|
"description": "A highly configurable tooltip for d3",
|
2020-09-20 21:21:59 +03:00
|
|
|
"keywords": [
|
|
|
|
"d3",
|
|
|
|
"tooltip"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3tooltip",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2018-12-19 16:16:11 +03:00
|
|
|
},
|
2020-09-20 21:21:59 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "romseguy",
|
2018-12-19 16:16:11 +03:00
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2018-12-19 16:16:11 +03:00
|
|
|
"src"
|
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
|
|
|
"unpkg": "lib/umd/d3tooltip.umd.js",
|
|
|
|
"sideEffects": false,
|
2018-12-19 16:16:11 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
2020-09-20 21:21:59 +03:00
|
|
|
"scripts": {
|
2022-01-24 05:11:46 +03:00
|
|
|
"build": "yarn build:cjs && yarn build:esm && yarn build:types && yarn build:umd",
|
|
|
|
"build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
|
|
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
|
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:umd": "rollup -c",
|
|
|
|
"clean": "rimraf lib",
|
2020-09-20 21:21:59 +03:00
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"type-check": "tsc --noEmit",
|
2021-09-19 02:47:03 +03:00
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint"
|
2018-12-19 16:16:11 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-06 04:20:56 +03:00
|
|
|
"@babel/runtime": "^7.17.0",
|
2022-01-23 02:00:06 +03:00
|
|
|
"ramda": "^0.28.0"
|
2020-09-20 21:21:59 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-06 04:20:56 +03:00
|
|
|
"@babel/cli": "^7.17.0",
|
|
|
|
"@babel/core": "^7.17.0",
|
|
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
2022-01-23 02:00:06 +03:00
|
|
|
"@babel/preset-env": "^7.16.11",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
2022-01-10 18:41:53 +03:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
|
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
2021-10-04 22:18:48 +03:00
|
|
|
"@types/d3": "^3.5.46",
|
2022-01-23 02:00:06 +03:00
|
|
|
"@types/ramda": "^0.27.64",
|
2022-02-06 04:20:56 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
|
|
"@typescript-eslint/parser": "^5.10.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"d3": "^3.5.17",
|
2022-01-31 04:37:35 +03:00
|
|
|
"eslint": "^8.8.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"rimraf": "^3.0.2",
|
2022-02-06 04:20:56 +03:00
|
|
|
"rollup": "^2.67.0",
|
2022-01-10 18:41:53 +03:00
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
2022-02-06 04:20:56 +03:00
|
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
2022-01-10 18:41:53 +03:00
|
|
|
"tslib": "^2.3.1",
|
2022-01-23 02:00:06 +03:00
|
|
|
"typescript": "~4.5.5"
|
2020-09-21 02:05:37 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2021-10-04 22:18:48 +03:00
|
|
|
"@types/d3": "^3.5.46",
|
2020-09-21 02:05:37 +03:00
|
|
|
"d3": "^3.5.17"
|
2018-12-19 16:16:11 +03:00
|
|
|
}
|
|
|
|
}
|