Files
weRequest/package.json
ivinwu 9d0b49ea92 build(package.json): add commitizen to format commits
plz use "git cz" or "npm run commit" to commit your code
2018-12-29 15:49:03 +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.0",
"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"
}
}
}