redux-devtools/packages/map2tree/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

{
"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",
2019-01-09 03:06:21 +03:00
"build:umd": "webpack --progress --config webpack.config.umd.js",
"build:umd:min": "webpack --env.minimize --progress --config webpack.config.umd.js",
2019-01-08 19:35:12 +03:00
"test": "jest",
"prepare": "npm run build && npm run build:umd",
2019-01-10 20:23:33 +03:00
"prepublishOnly": "npm run test && npm run clean && npm run build && npm run build:umd && npm run build:umd:min"
2019-01-10 21:51:14 +03:00
},
"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": {
2019-02-06 02:59:55 +03:00
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"immutable": "3.7.6",
2019-02-06 02:59:55 +03:00
"jest": "^24.1.0",
"rimraf": "^2.3.4",
2019-01-09 03:06:21 +03:00
"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"
]
}
]
}