mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-01-31 11:51:41 +03:00
67 lines
1.6 KiB
JSON
Executable File
67 lines
1.6 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",
|
|
"lint": "eslint src test",
|
|
"test": "jest",
|
|
"check": "npm run lint && npm run test",
|
|
"prepare": "npm run build && npm run build:umd",
|
|
"prepublishOnly": "npm run check && 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": "^6.26.0",
|
|
"babel-core": "^6.26.0",
|
|
"babel-eslint": "4.1.8",
|
|
"babel-loader": "^6.2.0",
|
|
"babel-preset-es2015-loose": "^6.1.3",
|
|
"babel-preset-react": "^6.3.13",
|
|
"babel-preset-stage-0": "^6.3.13",
|
|
"eslint": "1.10.3",
|
|
"immutable": "3.7.6",
|
|
"jest": "^23.6.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"
|
|
]
|
|
}
|
|
]
|
|
}
|