-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "@inventorjs/axios-weapp-adapter",
"version": "1.0.0",
"description": "axios 微信小程序适配器",
"main": "dist/index.js",
"repository": "[email protected]:inventorjs/axios-weapp-adapter.git",
"author": "sunkeysun <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"lint": "lint-staged --quiet",
"prepublish": "yarn build"
},
"devDependencies": {
"axios": "^1.4.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/axios": "^0.14.0",
"@types/statuses": "^2.0.0",
"@types/wechat-miniprogram": "^3.4.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"typescript": "^4.9.5"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended"
]
},
"lint-staged": {
"src/*.ts": "eslint"
},
"peerDependencies": {
"axios": "^1.4.0"
},
"dependencies": {
"statuses": "^2.0.1",
"tslib": "^2.3.1"
}
}