-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "pkce-spa",
"version": "0.3.1",
"description": "An authentication session manager for OpenID Connect using PKCE.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "playwright test --browser all",
"test:serve-client": "serve test/client -p 8080",
"test:serve-provider": "node test/mock-provider/server.js"
},
"devDependencies": {
"@playwright/test": "^1.36.2",
"@types/oidc-provider": "^8.2.0",
"@types/react": "^18.2.17",
"oidc-provider": "^8.2.2",
"playwright": "^1.36.2",
"prettier": "3.0.0",
"serve": "^14.2.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelshepherd/pkce-spa.git"
},
"author": {
"name": "Joel Shepherd",
"url": "https://github.com/joelshepherd"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/joelshepherd/pkce-spa/issues"
},
"homepage": "https://github.com/joelshepherd/pkce-spa#readme"
}