2018-12-19 17:50:39 +03:00
|
|
|
{
|
|
|
|
"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 src/index.js dist/map2tree.js && NODE_ENV=production webpack src/index.js dist/map2tree.min.js",
|
|
|
|
"lint": "eslint src test",
|
2019-01-08 19:35:12 +03:00
|
|
|
"test": "jest",
|
2018-12-19 17:50:39 +03:00
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"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.3.15",
|
|
|
|
"babel-core": "^6.1.20",
|
|
|
|
"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",
|
2019-01-08 19:35:12 +03:00
|
|
|
"jest": "^23.6.0",
|
2018-12-19 17:50:39 +03:00
|
|
|
"rimraf": "^2.3.4",
|
|
|
|
"webpack": "1.12.13"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.2.1"
|
|
|
|
},
|
|
|
|
"npmName": "map2tree",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"dist",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"npmFileMap": [
|
|
|
|
{
|
|
|
|
"basePath": "/dist/",
|
|
|
|
"files": [
|
|
|
|
"*.js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|