This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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-chrome-messaging-adapter",
"version": "0.6.0",
"description": "Axios adapter using Chrome Extensions Messaging to perform requests from the background page.",
"main": "./dist/axios-chrome-messaging-adapter.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"homepage": "https://github.com/dzetah/axios-chrome-messaging-adapter",
"author": {
"name": "sybers",
"email": "[email protected]",
"url": "https://github.com/sybers"
},
"repository": "https://github.com/dzetah/axios-chrome-messaging-adapter",
"license": "MIT",
"keywords": [
"axios",
"adapter",
"chrome extension",
"CORB"
],
"scripts": {
"prepare": "install-peers",
"dev": "webpack",
"watch": "webpack --watch",
"prod": "webpack --mode=production",
"lint": "eslint src/ --ext .ts",
"test": "jest"
},
"engines": {
"node": ">=10.13.0"
},
"peerDependencies": {
"axios": ">=0.26.0"
},
"devDependencies": {
"@types/chrome": "^0.0.133",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"camelcase": "^5.3.1",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.20.0",
"eslint-plugin-prettier": "^3.3.1",
"install-peers-cli": "^2.2.0",
"jest": "^26.6.3",
"jest-chrome": "^0.7.0",
"nock": "^13.2.4",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
}
}