forked from ctimmerm/axios-mock-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "axios-mock-adapter",
"version": "1.21.2",
"description": "Axios adapter that allows to easily mock requests",
"main": "src/index.js",
"scripts": {
"clean": "rimraf dist",
"test": "mocha && npm run test:bundlesize",
"test:bundlesize": "npm run clean && npm run build:umd:min && bundlesize",
"test:coverage": "nyc --reporter=html --reporter=text-summary mocha",
"lint": "eslint src test",
"build:umd": "webpack --mode development ./src/index.js --output-path ./dist",
"build:umd:min": "webpack --mode production ./src/index.js --output-path ./dist",
"prepublish": "npm run clean && npm run build:umd && npm run build:umd:min"
},
"files": [
"src",
"dist",
"types"
],
"types": "types",
"repository": {
"type": "git",
"url": "git+https://github.com/ctimmerm/axios-mock-adapter.git"
},
"keywords": [
"axios",
"test",
"mock",
"request",
"stub",
"adapter"
],
"author": "Colin Timmermans <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ctimmerm/axios-mock-adapter/issues"
},
"homepage": "https://github.com/ctimmerm/axios-mock-adapter#readme",
"peerDependencies": {
"axios": ">= 0.17.0"
},
"devDependencies": {
"axios": "^0.27.2",
"bundlesize": "^0.18.1",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"is-buffer": "^2.0.5"
},
"bundlesize": [
{
"path": "./dist/axios-mock-adapter.min.js",
"maxSize": "3.0 kB"
}
]
}