redux-devtools/packages/map2tree/package.json

67 lines
1.6 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",
"build:umd": "webpack src/index.js dist/map2tree.js && NODE_ENV=production webpack src/index.js dist/map2tree.min.js",
"lint": "eslint src test",
"test": "babel-node test/map2tree.js | tap-diff",
"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",
"rimraf": "^2.3.4",
"tap-diff": "0.1.1",
"tap-spec": "4.1.1",
"tape": "4.4.0",
"webpack": "1.12.13"
},
"dependencies": {
"lodash": "^4.2.1"
},
"npmName": "map2tree",
"files": [
"lib",
"dist",
"src"
],
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}