UNPKG

1.25 kBJSONView Raw
1{
2 "name": "hashy",
3 "version": "0.6.1",
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.3",
32 "exec-promise": "^0.6.1",
33 "promise-toolbox": "^0.8.0",
34 "yargs": "^6.6.0"
35 },
36 "optionalDependencies": {
37 "argon2": "^0.15.0",
38 "bcrypt": "^1.0.2"
39 },
40 "devDependencies": {
41 "husky": "^0.13.1",
42 "jest": "^19.0.2",
43 "native-promise-only": "^0.8.1",
44 "standard": "^9.0.0"
45 },
46 "scripts": {
47 "commitmsg": "yarn test",
48 "dev-test": "jest --watch",
49 "posttest": "standard",
50 "test": "jest"
51 },
52 "files": [
53 "index.js",
54 "cli.js",
55 "bin"
56 ],
57 "standard": {
58 "ignore": [
59 "examples"
60 ]
61 }
62}