UNPKG

1.22 kBJSONView Raw
1{
2 "name": "hashy",
3 "version": "0.5.1",
4 "license": "MIT",
5 "description": "Create, check and update password hashes.",
6 "keywords": [
7 "password",
8 "hash"
9 ],
10 "homepage": "https://github.com/julien-f/nodejs-hashy",
11 "bugs": "https://github.com/julien-f/nodejs-hashy/issues",
12 "author": {
13 "name": "Julien Fontanet",
14 "email": "julien.fontanet@isonoe.net",
15 "url": "http://julien.isonoe.net"
16 },
17 "bin": {
18 "hashy": "cli.js"
19 },
20 "directories": {
21 "example": "./examples"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/julien-f/nodejs-hashy"
26 },
27 "dependencies": {
28 "bcryptjs": "^2.3.0",
29 "exec-promise": "^0.6.1",
30 "promise-toolbox": "^0.4.0",
31 "yargs": "^3.10.0"
32 },
33 "optionalDependencies": {
34 "argon2": "^0.12.0",
35 "bcrypt": "~0.8.0"
36 },
37 "devDependencies": {
38 "chai": "^3.0.0",
39 "mocha": "^2.2.5",
40 "native-promise-only": "^0.8.1",
41 "semver": "^5.1.0",
42 "standard": "^7.0.0"
43 },
44 "scripts": {
45 "lint": "standard",
46 "test": "mocha index.spec.js",
47 "posttest": "npm run lint"
48 },
49 "files": [
50 "index.js",
51 "cli.js",
52 "bin"
53 ],
54 "standard": {
55 "ignore": [
56 "examples"
57 ]
58 }
59}