-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "axios-base-request",
"version": "1.0.5",
"description": "http request library based axios for the browser.",
"main": "dist/main.js",
"scripts": {
"dev": "webpack-dev-server --open --watch",
"build": "webpack --config build/webpack.config.js",
"examples": "node ./examples/server.js",
"lint": "eslint ./src",
"test": "npm run lint && jest",
"test:watch": "jest --watch",
"ci": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/bingdian/axios-base-request.git"
},
"homepage": "https://github.com/bingdian/axios-base-request",
"author": "bingidan",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.4",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^3.0.1",
"jest": "^24.8.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}