-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 KB
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
{
"name": "@duosecurity/duo_universal",
"version": "3.0.1",
"description": "Node.js implementation of the Duo Universal SDK.",
"keywords": [
"duo",
"duo security"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/duosecurity/duo_universal_nodejs.git"
},
"homepage": "https://github.com/duosecurity/duo_universal_nodejs#readme",
"bugs": {
"url": "https://github.com/duosecurity/duo_universal_nodejs/issues"
},
"packageManager": "pnpm@10.13.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup --env.NODE_ENV production",
"prepublishOnly": "pnpm build",
"lint": "eslint ./src --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"axios": "1.16.0",
"jose": "^6.2.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.19.17",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vitest": "^3.2.4"
},
"overrides": {
"glob-parent": "^6.0.2"
}
}