forked from mswjs/interceptors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@mswjs/interceptors",
"description": "Low-level HTTP/HTTPS/XHR/fetch request interception library.",
"version": "0.13.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Artem Zakharchenko",
"license": "MIT",
"engines": {
"node": ">=12.x"
},
"scripts": {
"start": "tsc --build -w",
"test": "yarn test:internal && yarn test:integration",
"test:internal": "jest",
"test:integration": "yarn test:integration:node && yarn test:integration:browser",
"test:integration:node": "jest --c test/jest.node.config.js --runInBand",
"test:integration:browser": "jest --c test/jest.browser.config.js",
"clean": "rimraf lib",
"build": "yarn clean && tsc --build",
"prepare": "yarn simple-git-hooks init",
"prepublishOnly": "yarn build"
},
"files": [
"lib",
"README.md",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/mswjs/interceptors"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@open-draft/test-server": "^0.2.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^14.14.35",
"@types/node-fetch": "2.5.12",
"@types/supertest": "^2.0.11",
"@types/xmldom": "^0.1.31",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"commitizen": "^4.2.4",
"cors": "^2.8.5",
"cz-conventional-changelog": "3.3.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"got": "^11.8.3",
"jest": "^27.4.3",
"node-fetch": "2.6.7",
"page-with": "^0.5.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"superagent": "^6.1.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"typescript": "4.3.5"
},
"dependencies": {
"@open-draft/until": "^1.0.3",
"@xmldom/xmldom": "^0.7.5",
"debug": "^4.3.3",
"headers-polyfill": "^3.0.3",
"outvariant": "^1.2.1",
"strict-event-emitter": "^0.2.0"
},
"keywords": [
"request",
"intercept",
"http",
"https",
"xmlhttprequest",
"xhr",
"fetch",
"low-level",
"mock"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}