-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.3 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
{
"name": "hashy",
"version": "0.12.0",
"license": "MIT",
"description": "Hash passwords the right way (Argon2 & bcrypt support)",
"keywords": [
"argon2",
"bcrypt",
"hash",
"hashing",
"password"
],
"homepage": "https://github.com/JsCommunity/hashy",
"bugs": "https://github.com/JsCommunity/hashy/issues",
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net",
"url": "http://julien.isonoe.net"
},
"engines": {
"node": ">=16.17"
},
"bin": {
"hashy": "cli.js"
},
"directories": {
"example": "./examples"
},
"repository": {
"type": "git",
"url": "https://github.com/JsCommunity/hashy"
},
"dependencies": {
"argon2": "^0.41.1",
"bcryptjs": "^2.4.3",
"exec-promise": "^0.7.0",
"promise-toolbox": "^0.21.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2"
},
"scripts": {
"test": "node --test && true",
"prepare": "husky"
},
"files": [
"index.js",
"cli.js"
],
"lint-staged": {
"*": [
"npm test",
"prettier --ignore-unknown --write"
],
"*.{{,c,m}j,t}s{,x}": "eslint --ignore-pattern '!*'"
}
}