-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
{
"name": "axios-middleware",
"version": "0.4.0",
"description": "Simple axios HTTP middleware service",
"author": "Emile Bergeron <[email protected]>",
"license": "MIT",
"main": "dist/axios-middleware.common.js",
"module": "dist/axios-middleware.esm.js",
"unpkg": "dist/axios-middleware.js",
"bugs": {
"url": "https://github.com/emileber/axios-middleware/issues"
},
"homepage": "https://emileber.github.io/axios-middleware/#/",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "run-s build validate",
"validate": "pkg-ok",
"build": "node build/build.main.js",
"build:dev": "rollup -c build/rollup.dev.config.js",
"build:lint-config": "eslint -c .eslintrc.js --print-config .eslintrc.js > .eslintrc.json",
"release": "np",
"test": "run-p lint test:unit",
"pretest:unit": "npm run build:dev",
"test:unit": "jest",
"pretest:coverage": "npm run test:unit -- --coverage",
"test:coverage": "codecov",
"lint": "eslint ./",
"docs": "npx docsify-cli serve ./docs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/emileber/axios-middleware.git"
},
"keywords": [
"axios",
"request",
"adapter",
"middleware",
"response",
"http"
],
"peerDependencies": {
"axios": ">=0.17.1 <1.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.3.4",
"axios": "^1.1.3",
"axios-mock-adapter": "^1.21.5",
"codecov": "^3.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"np": "^8.0.4",
"npm-run-all": "^4.1.5",
"pkg-ok": "^2.3.1",
"prettier": "^3.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.6.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-replace": "^2.1.0"
},
"engines": {
"node": ">=0.10.0"
}
}