UNPKG

@ferry-core/oar

Version:

A RESTful HTTP request lib with default config

73 lines (72 loc) 1.98 kB
{ "name": "@ferry-core/oar", "version": "0.2.1", "private": false, "description": "A RESTful HTTP request lib with default config", "main": "dist/oar.cjs.min.js", "module": "dist/oar.esm.min.js", "unpkg": "dist/oar.umd.min.js", "devMain": "src/index.ts", "typings": "dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/oar.esm.min.js", "require": "./dist/oar.umd.min.js" }, "./dist/style.css": "./dist/style.css" }, "files": [ "dist" ], "keywords": [ "oar", "fetch", "ferry", "http" ], "scripts": { "test": "cross-env BABEL_ENV=test NODE_ENV=testing jest --coverage -t='ColorPicker'", "test:watch": "jest --watch", "preversion": "npm run build && npm run test", "build": "cross-env NODE_ENV=production cpack build --source=ts", "lint": "eslint --ext .js,.jsx,.ts,.tsx --fix", "format": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"", "release": "qkrelease", "prepare": "husky install", "changelog:help": "conventional-changelog --help", "changelog": "conventional-changelog -p simple -i CHANGELOG.md -s -r 0", "prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\"", "dev": "storybook dev -p 6006", "build:sb": "storybook build" }, "author": "Michael Pan", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/YanPanMichael/oar.git" }, "bugs": { "url": "https://github.com/YanPanMichael/oar/issues", "email": "1214863281@qq.com" }, "homepage": "https://github.com/YanPanMichael/oar", "peerDependencies": { "axios": "^1.4.0", "qs": "^6.11.0" }, "config": { "commitizen": { "path": "commitiquette" } }, "changelogConfig": { "authorName": true, "authorEmail": true }, "lint-staged": { "*.{ts,tsx,js,jsx,json,css,md}": [ "prettier -w" ] } }