-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "bcrypt-inzi",
"version": "2.0.0",
"description": "this is simple lib for string to hash and compare string and hash",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "jest"
},
"author": "Inzamam Malik (malikasinger)",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"contributors": [
"Shehzad Iqbal <> (https://github.com/shehza-d)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mInzamamMalik/Bcrypt-inzi.git"
},
"keywords": [
"bcrypt",
"hash",
"salt",
"bcrypt",
"nodejs"
],
"bugs": {
"url": "https://github.com/mInzamamMalik/Bcrypt-inzi/issues"
},
"homepage": "https://github.com/mInzamamMalik/Bcrypt-inzi#readme"
}