{
  "name": "<%= name %>",
  "version": "0.0.1",
  "description": "<%= description %>",
  "authors": {
    "name": "<%= author %>",
    "email": "<%= mail %>"
  },
  "repository": "<%= org %>/<%= name %>",
  "peerDependencies": {
<% if (withUmiUI) { -%>
    "antd": "4.x",
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
<% } -%>
    "umi": "2.x || ^2.9.0-0"
  },
  "main":  "lib/index.js",
  "scripts": {
<% if (withUmiUI) { -%>
    "start:mini": "cross-env UMI_UI=1 APP_ROOT=$PWD/example umi dev",
    "start": "cross-env CURRENT_PROJECT=example umi ui",
<% } else { -%>
    "start": "cross-env APP_ROOT=$PWD/example umi dev",
<% } -%>
    "build":  "father-build",
    "prepublishOnly": "npm run build && np --no-cleanup --yolo --no-publish"
  },
  "devDependencies": {
    "cross-env": "^6.0.3",
    "father-build":  "^1.8.0",
<% if (withUmiUI) { -%>
    "antd": "^4.0.0-alpha.0",
<% } -%>
    "np": "^5.0.3",
    "umi": "^2.9.0",
    "umi-types": ">= 0.4.0-beta.4"
  },
  "files": [
<% if (withUmiUI) { -%>
    "dist",
<% } -%>
    "lib",
    "src",
    "ui"
  ],
  "license": "MIT"
}
