2018-12-19 16:16:11 +03:00
|
|
|
{
|
|
|
|
"name": "d3tooltip",
|
|
|
|
"version": "1.2.2",
|
|
|
|
"description": "A highly configurable tooltip for d3",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf lib dist",
|
|
|
|
"lint": "eslint src",
|
2019-01-09 03:06:21 +03:00
|
|
|
"build": "babel src --out-dir lib",
|
|
|
|
"build:umd": "webpack --progress --config webpack.config.umd.js",
|
|
|
|
"build:umd:min": "webpack --env.minimize --progress --config webpack.config.umd.js",
|
2018-12-19 16:16:11 +03:00
|
|
|
"version": "npm run build",
|
|
|
|
"postversion": "git push && git push --tags && npm run clean",
|
|
|
|
"prepare": "npm run clean && npm run build",
|
2019-01-09 03:06:21 +03:00
|
|
|
"prepublishOnly":
|
|
|
|
"npm run lint && npm run clean && npm run build && npm run build:umd && npm run build:umd:min"
|
2018-12-19 16:16:11 +03:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"dist",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"d3",
|
|
|
|
"tooltip"
|
|
|
|
],
|
|
|
|
"author": "romseguy",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
|
|
"devDependencies": {
|
2019-01-09 03:06:21 +03:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-core": "^6.26.0",
|
2018-12-19 16:16:11 +03:00
|
|
|
"babel-eslint": "^5.0.0-beta4",
|
2019-01-09 03:06:21 +03:00
|
|
|
"babel-loader": "^7.1.5",
|
2018-12-19 16:16:11 +03:00
|
|
|
"babel-preset-es2015-loose": "^6.1.3",
|
|
|
|
"babel-preset-react": "^6.3.13",
|
|
|
|
"babel-preset-stage-0": "^6.3.13",
|
|
|
|
"eslint": "^0.24",
|
|
|
|
"eslint-config-airbnb": "0.0.6",
|
|
|
|
"eslint-plugin-react": "^3.6.3",
|
|
|
|
"rimraf": "^2.3.4",
|
2019-01-09 03:06:21 +03:00
|
|
|
"webpack": "^4.27.1",
|
|
|
|
"webpack-cli": "^3.2.0"
|
2018-12-19 16:16:11 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"ramda": "^0.17.1"
|
|
|
|
}
|
|
|
|
}
|