forked from ctimmerm/axios-mock-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "axios-mock-adapter",
"version": "1.15.0",
"description": "Axios adapter that allows to easily mock requests",
"main": "src/index.js",
"scripts": {
"clean": "rimraf dist",
"test": "mocha",
"test:coverage": "istanbul cover node_modules/.bin/_mocha",
"lint": "eslint src test",
"build:umd": "webpack --mode development ./src/index.js --output ./dist/axios-mock-adapter.js",
"build:umd:min": "webpack --mode production ./src/index.js --output ./dist/axios-mock-adapter.min.js",
"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.9.0"
},
"devDependencies": {
"axios": "^0.18.0",
"chai": "^4.1.0",
"eslint": "^5.2.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"rimraf": "^2.6.1",
"webpack": "^4.16.4",
"webpack-command": "^0.4.1"
},
"dependencies": {
"deep-equal": "^1.0.1"
}
}