-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
117 lines (117 loc) · 2.56 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "taro-axios",
"version": "1.1.1",
"description": "在 Taro 中使用 axios。",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"author": {
"name": "Jay Fong",
"email": "fjc0kb@gmail.com",
"url": "https://github.com/fjc0k"
},
"license": "MIT",
"homepage": "https://github.com/fjc0k/taro-axios",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git@github.com:fjc0k/taro-axios.git"
},
"bugs": {
"url": "https://github.com/fjc0k/taro-axios/issues"
},
"keywords": [
"taro",
"axios",
"taro-axios"
],
"files": [
"lib"
],
"scripts": {
"build": "bili",
"lint:es": "eslint --fix src/",
"test": "jest",
"test:cov": "jest --coverage",
"release": "standard-version --commit-all --no-verify && git push --follow-tags origin master && yarn build && clean-publish --files example --fields scripts",
"patch:axios": "patch-package axios",
"postinstall": "patch-package"
},
"eslintConfig": {
"root": true,
"extends": "io"
},
"eslintIgnore": [
"lib",
"dist",
"node_modules",
"__snapshots__",
"axios"
],
"commitlint": {
"extends": [
"io"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@tarojs/taro": "^1.2.26",
"@tarojs/taro-h5": "^1.2.26",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/qs": "^6.5.3",
"bili": "^4.8.0",
"clean-publish": "^1.1.6",
"codecov": "^3.3.0",
"commitlint-config-io": "^0.3.0",
"cp-cli": "^2.0.0",
"eslint": "^5.15.0",
"eslint-config-io": "^0.5.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"nervjs": "^1.3.13",
"patch-package": "^6.2.1",
"qs": "^6.7.0",
"rollup-plugin-typescript2": "^0.20.1",
"standard-version": "^4.4.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"typescript": "^3.4.5",
"vtils": "^1.3.0"
},
"peerDependencies": {
"@tarojs/taro": "^3"
},
"dependencies": {
"axios": "0.19.2"
}
}