-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1015 Bytes
/
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
{
"name": "@cn-src/axios-client",
"version": "0.0.1-beta.1",
"description": "Axios Client",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc && pnpm run prettier --write src/** lib/**",
"build:full": "rimraf lib && tsc && eslint . && jest",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"axios": "^0.24.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"nock": "^13.2.1",
"prettier": "^2.3.0",
"rewire": "^5.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cn-src/axios-client.git"
},
"keywords": [
"axios"
],
"author": "cn-src <[email protected]>",
"files": [
"lib",
"LICENSE",
"README.md"
]
}