Files
weRequest/package.json
TENCENT\ivinwu 9f5034bb75 feat: 增加配置:doNotUseQueryString
默认情况下,POST请求,登陆态除了带在请求body中,也会带在queryString上,如果配置了这个为true,则登陆态不带在queryString中
2019-04-10 19:18:51 +08:00

52 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "we-request",
"version": "1.2.8",
"description": "本工具通过拓展小程序的wx.request让开发者通过简单的配置实现自动管理登录态等功能",
"keywords": [
"登录态",
"登陆态",
"会话管理",
"用户态",
"小程序"
],
"homepage": "https://github.com/IvinWu/weRequest",
"author": {
"name": "Ivin Wu",
"email": "ivinwu@tencent.com",
"url": "https://github.com/IvinWu"
},
"repository": {
"type": "git",
"url": "https://github.com/IvinWu/weRequest.git"
},
"main": "build/weRequest.js",
"typings": "build/index.d.ts",
"scripts": {
"build": "webpack",
"commit": "git cz"
},
"dependencies": {},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"ts-loader": "^5.3.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}