60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
|
{
|
||
|
"name": "umi-request",
|
||
|
"version": "1.4.0",
|
||
|
"description": "A request tool based on fetch.",
|
||
|
"main": "dist/index.js",
|
||
|
"module": "dist/index.esm.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git@github.com:umijs/umi-request.git"
|
||
|
},
|
||
|
"bugs": "https://github.com/umijs/umi-request/issues",
|
||
|
"scripts": {
|
||
|
"dev": "father-build --w",
|
||
|
"build": "father-build",
|
||
|
"test": "umi-test",
|
||
|
"test:watch": "umi-test --watch",
|
||
|
"test:cover": "umi-test --coverage",
|
||
|
"lint": "umi-lint src",
|
||
|
"ci": "npm run lint && npm run test:cover",
|
||
|
"coveralls": "cat ./coverage/lcov.info | coveralls",
|
||
|
"precommit": "umi-lint --staged --prettier --fix"
|
||
|
},
|
||
|
"author": {
|
||
|
"name": "puwei",
|
||
|
"email": "junwei.pu@gmail.com"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"create-test-server": "2.3.1",
|
||
|
"debug": "^4.1.0",
|
||
|
"eslint-config-airbnb-base": "^13.1.0",
|
||
|
"eslint-config-prettier": "^3.3.0",
|
||
|
"eslint-plugin-import": "^2.14.0",
|
||
|
"father-build": "^1.19.5",
|
||
|
"iconv-lite": "^0.4.24",
|
||
|
"jest": "^23.5.0",
|
||
|
"np": "5.0.2",
|
||
|
"prettier": "^2.3.0",
|
||
|
"query-string": "^6.9.0",
|
||
|
"typescript": "^3.0.3",
|
||
|
"umi": "^2.8.15",
|
||
|
"umi-lint": "^1.0.0-alpha.1",
|
||
|
"umi-plugin-library": "^1.1.6",
|
||
|
"umi-test": "^1.4.0",
|
||
|
"whatwg-fetch": "^3.0.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"isomorphic-fetch": "^2.2.1",
|
||
|
"qs": "^6.9.1"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist/",
|
||
|
"package.json",
|
||
|
"README.md",
|
||
|
"CHANGELOG.md",
|
||
|
"types/index.d.ts"
|
||
|
],
|
||
|
"types": "types/index.d.ts"
|
||
|
}
|