-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.52 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": "passport-workos",
"version": "0.0.0",
"description": "Passport strategy for WorkOS SSO",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"keywords": [
"passport",
"workos"
],
"scripts": {
"build": "microbundle --target node",
"test": "jest"
},
"files": [
"src/**",
"dist/**",
"LICENSE",
"README.md"
],
"author": "Andy Richardson (andyrichardson)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andyrichardson/passport-workos.git"
},
"bugs": {
"url": "https://github.com/andyrichardson/passport-workos/issues"
},
"homepage": "https://github.com/andyrichardson/passport-workos#readme",
"peerDependencies": {
"@workos-inc/node": ">=1.0.0",
"passport": ">=0.0.1"
},
"optionalDependencies": {
"express": ">=4.18.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@types/passport": "^1.0.9",
"@types/supertest": "^2.0.12",
"@workos-inc/node": "^2.10.0",
"express": "^4.17.1",
"express-session": "^1.17.3",
"jest": "^28.1.3",
"microbundle": "^0.15.0",
"passport": "^0.6.0",
"prettier": "2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}