UNPKG

1.17 kBJSONView Raw
1{
2 "name": "hashy",
3 "version": "0.6.0",
4 "license": "MIT",
5 "description": "Hash passwords the right way (Argon2 & bcrypt support)",
6 "keywords": [
7 "argon2",
8 "bcrypt",
9 "hash",
10 "hashing",
11 "password"
12 ],
13 "homepage": "https://github.com/JsCommunity/hashy",
14 "bugs": "https://github.com/JsCommunity/hashy/issues",
15 "author": {
16 "name": "Julien Fontanet",
17 "email": "julien.fontanet@isonoe.net",
18 "url": "http://julien.isonoe.net"
19 },
20 "bin": {
21 "hashy": "cli.js"
22 },
23 "directories": {
24 "example": "./examples"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/JsCommunity/hashy"
29 },
30 "dependencies": {
31 "bcryptjs": "^2.4.0",
32 "exec-promise": "^0.6.1",
33 "promise-toolbox": "^0.7.0",
34 "yargs": "^6.6.0"
35 },
36 "optionalDependencies": {
37 "argon2": "^0.14.1",
38 "bcrypt": "^1.0.2"
39 },
40 "devDependencies": {
41 "jest": "^18.1.0",
42 "native-promise-only": "^0.8.1",
43 "standard": "^8.6.0"
44 },
45 "scripts": {
46 "test": "jest",
47 "posttest": "standard"
48 },
49 "files": [
50 "index.js",
51 "cli.js",
52 "bin"
53 ],
54 "standard": {
55 "ignore": [
56 "examples"
57 ]
58 }
59}