-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@corbado/node-sdk",
"version": "3.0.2",
"description": "This Node.js SDK eases the integration of Corbado's passkey-first authentication solution.",
"keywords": [
"passkeys",
"authentication",
"webhooks",
"fido2"
],
"homepage": "https://github.com/corbado/corbado-nodejs#readme",
"bugs": {
"url": "https://github.com/corbado/corbado-nodejs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corbado/corbado-nodejs.git"
},
"license": "MIT",
"author": "Corbado",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./errors": {
"import": "./esm/errors/index.js",
"require": "./cjs/errors/index.js"
}
},
"main": "cjs/index.js",
"module": "src/index.js",
"scripts": {
"generate-openapi": "make openapi_generate",
"prepublishOnly": "make build",
"test": "make test",
"unittests": "make unittests",
"lint": "make lint",
"fix": "make fix",
"tsc": "tsc",
"start": "make start",
"build": "make build"
},
"dependencies": {
"axios": "^1.7.7",
"axios-better-stacktrace": "^2.1.7",
"axios-mock-adapter": "^2.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jose": "^5.1.3",
"typescript": "^5.3.4"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.13.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.10",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=16.1"
},
"files": [
"package.json",
"README.md",
"esm",
"cjs",
"LICENSE",
"src"
],
"mocha": {
"require": [
"./test/polyfills.mjs"
],
"loader": [
"ts-node/esm"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
},
"nyc": {
"extension": [
".ts"
]
}
}