-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "axios-interface",
"version": "2.1.1",
"description": "create interface from axios",
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf es/ && tsc",
"lint": "skr lint",
"test": "skr test -- --coverage",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/dancerphil/axios-interface"
},
"author": "Cong Zhang <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.2.2"
},
"devDependencies": {
"@reskript/cli": "^5.7.2",
"@reskript/cli-lint": "^5.7.2",
"@reskript/cli-test": "^5.7.2",
"@reskript/config-jest": "^5.7.2",
"@reskript/config-lint": "^5.7.2",
"@types/jest": "^29.1.2",
"axios-mock-adapter": "^1.21.2",
"core-js": "^3.25.5",
"eslint": "^8.25.0",
"husky": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.13.0",
"typescript": "^4.8.4"
}
}