-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 3.22 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
88
89
90
91
92
93
94
{
"name": "@advanced-rest-client/electron",
"description": "Electron bindings for Advanced REST Client",
"version": "0.2.0",
"main": "index.js",
"module": "index.js",
"license": "Apache-2.0",
"author": {
"name": "Pawel Uchida-Psztyc",
"email": "[email protected]"
},
"contributors": [
"Your name can be here!"
],
"repository": {
"type": "git",
"url": "git://github.com/advanced-rest-client/electron.git"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/electron/issues",
"email": "[email protected]"
},
"dependencies": {
"@advanced-rest-client/base": "^0.1.1",
"@advanced-rest-client/events": "^0.2.28",
"@advanced-rest-client/oauth": "^0.1.0",
"electron-log": "^4.4.1",
"electron-store": "^8.0.1",
"esm": "^3.2.25",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"i18n": "^0.14.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/eslint-plugin": "^7.14.5",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/chai": "^4.2.11",
"@types/chance": "^1.1.0",
"@types/fs-extra": "^9.0.13",
"@types/i18n": "^0.13.1",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.6",
"chai": "^4.2.0",
"chance": "^1.1.8",
"electron": "^17.0.0",
"electron-mocha": "^11.0.2",
"eslint": "^8.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-no-only-tests": "^2.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"mocha": "^9.1.3",
"oauth2-mock-server": "^4.0.0",
"shrink-ray-current": "^4.1.3",
"sinon": "^13.0.0",
"ssl-root-cas": "^1.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"electron": "^17.0.0"
},
"scripts": {
"test": "npm run test:main && npm run test:renderer",
"test:renderer": "electron-mocha --renderer --timeout 20000 test/**/*.renderer.test.js test/request/**/*.renderer.test.js",
"test:main": "electron-mocha --timeout 20000 test/**/*.main.test.js",
"test:implicit": "electron-mocha test/implicit.main.test.js",
"test:password": "electron-mocha test/password.main.test.js",
"test:oidc": "electron-mocha test/oidc.main.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: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",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}