This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.97 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
{
"name": "@advanced-rest-client/electron-request",
"version": "3.3.0",
"description": "The request engine for Advanced REST Client - Electron engine",
"main": "index.js",
"module": "main.js",
"scripts": {
"test": "electron-mocha --timeout 20000 --renderer test/**/*.test.js",
"test:receiving": "electron-mocha --renderer test/socket-request-receiving.renderer.test.js",
"test:basic": "electron-mocha --renderer test/socket-request.renderer.test.js",
"test:test": "electron-mocha --renderer test/utils.renderer.test.js",
"test:timeouts": "electron-mocha --renderer test/socket-request/timeout.test.js",
"test:proxy": "npm run test:socket:proxy && npm run test:electron:proxy",
"test:socket:proxy": "electron-mocha --renderer test/socket-request/proxy.test.js",
"test:electron:request": "electron-mocha --renderer test/electron-request/electron-request.test.js --timeout 5000",
"test:electron:proxy": "electron-mocha --renderer test/electron-request/proxy.test.js --timeout 5000",
"test:electron:responses": "electron-mocha --renderer test/electron-request/responses.test.js --timeout 5000",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint"
},
"author": {
"name": "Pawel Uchida-Psztyc",
"email": "[email protected]"
},
"license": "Apache-2.0",
"dependencies": {
"@advanced-rest-client/arc-cookies": "^0.2.0",
"@advanced-rest-client/arc-headers": "^0.1.10",
"@advanced-rest-client/arc-types": "^0.2.59",
"electron-log": "^4.4.1",
"esm": "^3.2.25",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"chai": "^4.3.4",
"chance": "^1.1.8",
"cors": "^2.8.5",
"electron": "^13.3.0",
"electron-mocha": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^9.1.1",
"shrink-ray-current": "^4.1.3",
"ssl-root-cas": "^1.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"electron": "^13.1.1"
},
"repository": {
"type": "git",
"url": "git://github.com/advanced-rest-client/electron-request.git"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/electron-request/issues",
"email": "[email protected]"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}