{
  "name": "@ferry-core/ferry",
  "version": "0.1.2",
  "description": "common fetch tool for ferry service",
  "typings": "dist/types/index.d.ts",
  "main": "dist/ferry.cjs.min.js",
  "module": "dist/ferry.esm.min.js",
  "unpkg": "dist/ferry.umd.min.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "start": "cross-env NODE_ENV=development webpack-dev-server --config './examples/webpack.config.js' --host 127.0.0.1 --open --hot --port 8000",
    "exbuild": "cross-env NODE_ENV=production webpack --config './examples/webpack.config.js'",
    "build": "cross-env NODE_ENV=production cpack build --source=ts",
    "dev": "node examples/server.js",
    "lint": "eslint --ext .js,.jsx,.ts,.tsx --fix",
    "format": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"",
    "release": "qkrelease",
    "prepare": "husky install",
    "prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\"",
    "test": "jest --coverage --no-cache",
    "test:watch": "jest --coverage --watch",
    "test:prod": "npm run lint && npm run test -- --no-cache"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "keywords": [
    "ferry",
    "fetch",
    "axios",
    "oar"
  ],
  "author": "yanpan",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/YanPanMichael/ferry.git"
  },
  "bugs": {
    "url": "https://github.com/YanPanMichael/ferry/issues",
    "email": "1214863281@qq.com"
  },
  "homepage": "https://github.com/YanPanMichael/ferry",
  "peerDependencies": {
    "qs": "^6.11.0",
    "@ferry-core/oar": ">=0.2.0"
  },
  "lint-staged": {
    "*.{ts,tsx,js,jsx,json,css,md}": [
      "prettier -w"
    ]
  }
}
