-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "intercept-requests-js",
"version": "1.0.7",
"description": "intercept requests on your web application and change route, body, headers",
"author": "Luis Cardoso <[email protected]>",
"homepage": "https://github.com/luispmoraisc/intercept-requests-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/luispmoraisc/intercept-requests-js.git"
},
"license": "MIT",
"keywords": [
"intercept",
"requests",
"javascript request",
"axios request",
"fetch request",
"third party request"
],
"bugs": {
"url": "https://github.com/luispmoraisc/intercept-requests-js/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "yarn build:types && rollup -c",
"build:types": "yarn clean && tsc -p ./tsconfig.json --outDir build && api-extractor run",
"clean": "rimraf ./build ./dist ./docs ./coverage",
"test": "jest --watch",
"test:coverage": "jest --watchAll=false --coverage .",
"commit": "git add . && git cz",
"release:patch": "standard-version - --release-as patch",
"release:minor": "standard-version - --release-as minor",
"release:major": "standard-version - --release-as major"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@microsoft/api-extractor": "^7.28.2",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "3.1.0",
"jest": "^28.1.2",
"jest-junit": "^14.0.0",
"jsdoc": "^3.6.10",
"lint-staged": "12.3.3",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"standard-version": "9.3.2",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"minimist": "1.2.6"
}
}