-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "@pxtrn/oidc-appauth",
"version": "0.0.1",
"description": "A oidc client for node and electron supporting authorization code flow with PKCE",
"main": "index.js",
"sideEffects": false,
"scripts": {
"compile": "tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint-fix": "tslint --fix -p tsconfig.json -c tslint.json",
"test": "TS_NODE_PROJECT='./tsconfig.common.json' mocha -r ts-node/register 'tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixtron/oidc-appauth.git"
},
"keywords": [
"oidc",
"electron",
"node",
"spa",
"oauth2"
],
"author": "Stefan Aebischer <os@pixtron.ch> (https://pixtron.ch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixtron/oidc-appauth/issues"
},
"homepage": "https://github.com/pixtron/oidc-appauth#readme",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"sinon": "^8.1.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"axios": "^0.19.2",
"eventemitter3": "^4.0.0",
"open": "^7.0.2",
"webcrypto-shim": "^0.1.5"
}
}