This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 232
/
package.json
75 lines (75 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
69
70
71
72
73
74
75
{
"name": "@okta/configuration-validation",
"version": "1.1.0",
"description": "Configuration validation support for Okta JavaScript SDKs",
"main": "./dist/lib.js",
"module": "./dist/lib.esm.js",
"types": "./dist/lib.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"lint": "eslint . && tsc -p test",
"prepare": "yarn build",
"test": "yarn lint && yarn test:unit",
"test:unit": "jest test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okta/okta-oidc-js.git"
},
"keywords": [
"okta",
"oidc",
"OpenID Connect",
"authentication",
"auth",
"oauth2"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/okta/okta-oidc-js/issues"
},
"homepage": "https://github.com/okta/okta-oidc-js#readme",
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.8.2",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^25.2.3",
"@types/json-schema": "^7.0.5",
"@types/minimatch": "^3.0.3",
"@types/node": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^26.3.0",
"deep-extend": "^0.6.0",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.4.2",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.2"
},
"jest": {
"moduleNameMapper": {
"^@okta/configuration-validation$": "<rootDir>/src/lib"
},
"restoreMocks": true,
"testEnvironment": "jsdom",
"testMatch": [
"**/test/*.{js,ts}"
],
"roots": [
"test"
]
},
"dependencies": {
"@okta/okta-auth-js": "^6.1.0"
}
}