-
Notifications
You must be signed in to change notification settings - Fork 247
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "axios-mock-adapter",
"version": "2.1.0",
"description": "Axios adapter that allows to easily mock requests",
"main": "src/index.js",
"scripts": {
"clean": "node -e 'require(`fs`).rmSync(`./dist`, {recursive: true, force: true})'",
"test": "mocha && npm run clean && npm run build:umd:min && npm run test:types",
"test:coverage": "nyc --reporter=html --reporter=text-summary mocha",
"test:types": "tsc --project types",
"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": "^1.7.4",
"chai": "^4.3.6",
"eslint": "^9.8.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"is-buffer": "^2.0.5"
}
}