-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
{
"name": "@pingidentity-developers-experience/ping-oidc-client-sdk",
"version": "2.4.0",
"description": "An OAuth/OIDC SDK to simplify and fastrack integration with OAuth/OIDC protocol endpoints in SPAs (browser-based apps). AuthCode and implicit grant types. PKCE, state, userInfo, revoke, configurable logging, and token storage options.",
"main": "lib/ping-oidc.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf ./lib && webpack && tsc --declaration --emitDeclarationOnly",
"eslint": "eslint -c .eslintrc ./src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pingidentity-developers-experience/ping-oidc-client-sdk.git"
},
"keywords": [
"Ping Identity",
"IAM",
"oauth",
"oidc",
"PingOne",
"PingFederate",
"SDK"
],
"author": "Ping Identity Technical Enablement (https://www.pingidentity.com/)",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/pingidentity-developers-experience/ping-oidc-client-sdk/issues"
},
"homepage": "https://github.com/pingidentity-developers-experience/ping-oidc-client-sdk#readme",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.1.2",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.0.0",
"ghooks": "^2.0.4",
"prettier": "^3.0.2",
"raw-loader": "^4.0.2",
"typescript": "^5.0.4",
"uglify-js": "^3.17.4",
"webpack": "^5.69.0",
"webpack-cli": "^5.0.2"
},
"config": {
"ghooks": {
"pre-commit": "npm run eslint",
"pre-push": "npm run eslint"
}
}
}