-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 990 Bytes
/
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
{
"name": "node-hash-password",
"version": "1.4.2",
"description": "Hash your password before storing it on database with node.js",
"scripts": {
"test": "node ./test/test.js",
"build": "tsup",
"publish:tsup": "npm run build && npm publish"
},
"homepage": "https://github.com/damartripamungkas/node-hash-password",
"repository": {
"type": "git",
"url": "https://github.com/damartripamungkas/node-hash-password.git"
},
"keywords": [
"keccak256",
"sha256",
"sha512",
"hash",
"node-hash",
"password-hash",
"password"
],
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"author": "damartripamungkas",
"license": "MIT",
"dependencies": {
"ethers": "^6.13.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"tsup": "^8.1.0"
}
}