This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "@advanced-rest-client/electron-oauth2",
"version": "5.1.1",
"description": "OAuth 2 library for Electron application build for Advanced REST Client",
"main": "index.js",
"module": "main.js",
"scripts": {
"test": "electron-mocha test/*.main.test.js --timeout 10000",
"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"
},
"author": {
"name": "Pawel Psztyc",
"email": "[email protected]"
},
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/advanced-rest-client/electron-oauth2"
},
"dependencies": {
"@advanced-rest-client/arc-events": "^0.2.20",
"@advanced-rest-client/arc-types": "^0.2.59",
"electron-store": "^8.0.0",
"esm": "^3.2.25",
"fs-extra": "^10.0.0",
"i18n": "^0.13.3"
},
"peerDependencies": {
"electron": "^13.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/i18n": "^0.13.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"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",
"get-port": "^5.1.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^9.1.1",
"oauth2-mock-server": "^3.2.0",
"sinon": "^11.1.2",
"typescript": "^4.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}