redux-devtools/packages/map2tree/package.json
2020-08-09 01:06:18 -04:00

61 lines
1.4 KiB
JSON
Executable File

{
"name": "map2tree",
"version": "1.4.1",
"description": "Utility for mapping maps to trees",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack --progress --config webpack.config.umd.js",
"build:umd:min": "webpack --env.production --progress --config webpack.config.umd.js",
"test": "jest",
"prepare": "npm run build && npm run build:umd",
"prepublishOnly": "npm run test && npm run clean && npm run build && npm run build:umd && npm run build:umd:min"
},
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"keywords": [
"map2tree",
"map-to-tree",
"mapToTree",
"map",
"tree"
],
"author": "romseguy",
"license": "MIT",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"homepage": "https://github.com/reduxjs/redux-devtools",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"immutable": "^4.0.0-rc.12",
"jest": "^26.2.2",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"lodash": "^4.17.19"
},
"npmName": "map2tree",
"files": [
"lib",
"dist",
"src"
],
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}