-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@planjs/http",
"version": "0.0.1",
"description": "xhr,微信小程序,字节跳动小程序,支付宝小程序 http client",
"main": "index.js",
"scripts": {
"build": "tsc",
"commit": "git-cz",
"release": "standard-version",
"lint:fix": "eslint src --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planjs/http.git"
},
"keywords": [
"http",
"xhr",
"wx.request",
"my.request",
"tt.request"
],
"author": "fupeng <fupenglxy@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/planjs/http/issues"
},
"homepage": "https://github.com/planjs/http#readme",
"engines": {
"node": ">=6.9"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"@types/node": "^14.0.26",
"@typescript-eslint/parser": "^3.7.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"standard-version": "^8.0.2",
"typescript": "^3.9.7"
},
"peerDependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}