forked from okta/okta-auth-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.98 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
{
"name": "@okta/okta-auth-js",
"description": "The Okta Auth SDK",
"version": "2.3.0",
"homepage": "https://github.com/okta/okta-auth-js",
"license": "Apache-2.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/okta/okta-auth-js.git"
},
"bugs": {
"url": "https://github.com/okta/okta-auth-js/issues"
},
"scripts": {
"lint": "eslint .",
"lint:report": "eslint -f checkstyle -o build2/reports/lint/eslint-checkstyle-result.xml .",
"test": "jest",
"test:report": "yarn test --ci --silent || true",
"build": "node ./writeConfig.js && webpack --config webpack.config.js",
"prepublish": "yarn build"
},
"author": "Okta",
"keywords": [
"Okta",
"authentication",
"auth",
"login"
],
"dependencies": {
"Base64": "0.3.0",
"js-cookie": "2.2.0",
"q": "1.4.1",
"reqwest": "2.0.5",
"tiny-emitter": "1.1.0",
"xhr2": "0.1.3"
},
"devDependencies": {
"eslint": "5.6.1",
"jest": "^23.6.0",
"jest-junit": "^5.0.0",
"jquery": "3.3.1",
"json-loader": "0.5.4",
"lodash": "4.17.11",
"webpack": "1.13.0"
},
"okta-auth-js": {
"STATE_TOKEN_COOKIE_NAME": "oktaStateToken",
"DEFAULT_POLLING_DELAY": 500,
"DEFAULT_MAX_CLOCK_SKEW": 300,
"DEFAULT_CACHE_DURATION": 86400,
"FRAME_ID": "okta-oauth-helper-frame",
"REDIRECT_OAUTH_PARAMS_COOKIE_NAME": "okta-oauth-redirect-params",
"REDIRECT_STATE_COOKIE_NAME": "okta-oauth-state",
"REDIRECT_NONCE_COOKIE_NAME": "okta-oauth-nonce",
"TOKEN_STORAGE_NAME": "okta-token-storage",
"CACHE_STORAGE_NAME": "okta-cache-storage"
},
"jest": {
"coverageDirectory": "./build2/reports/coverage",
"restoreMocks": true,
"moduleNameMapper": {
"^OktaAuth(.*)$": "<rootDir>/jquery/$1"
},
"testMatch": [
"**/test/spec/*.js"
],
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"output": "./build2/reports/unit/junit-result.xml"
}
}