mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
999ed2ad8b
* fix(redux-slider-monitor): fix example build * fix(map2tree): consolidate immutable version
61 lines
1.4 KiB
JSON
Executable File
61 lines
1.4 KiB
JSON
Executable File
{
|
|
"name": "map2tree",
|
|
"version": "1.4.0",
|
|
"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.minimize --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.2.3",
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/preset-env": "^7.3.1",
|
|
"babel-loader": "^8.0.5",
|
|
"immutable": "^3.8.1",
|
|
"jest": "^24.1.0",
|
|
"rimraf": "^2.3.4",
|
|
"webpack": "^4.27.1",
|
|
"webpack-cli": "^3.2.0"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.2.1"
|
|
},
|
|
"npmName": "map2tree",
|
|
"files": [
|
|
"lib",
|
|
"dist",
|
|
"src"
|
|
],
|
|
"npmFileMap": [
|
|
{
|
|
"basePath": "/dist/",
|
|
"files": [
|
|
"*.js"
|
|
]
|
|
}
|
|
]
|
|
}
|