-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "auth-guardian",
"version": "2.1.2",
"description": "auth-guardian a library for enhancing application security",
"main": "./dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kajvan/guardian"
},
"keywords": [
"security",
"authentication",
"password",
"jwt",
"rate limiting"
],
"author": "kaj van schalkwijk",
"license": "MIT",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
}
}