1 | {
|
2 | "name": "@rbtdev/node-cmd-bcrypt",
|
3 | "version": "1.2.0",
|
4 | "description": "A simple bycryptjs based command line password hasher",
|
5 | "author": "Rob Thuleen <rob.thuleen@gmail.com>",
|
6 | "license": "MIT",
|
7 | "main": "index.js",
|
8 | "bin": {
|
9 | "passwdjs": "./bin/passwdjs.js"
|
10 | },
|
11 | "dependencies": {
|
12 | "async": "^2.1.4",
|
13 | "bcryptjs": "^2.4.0",
|
14 | "commander": "^2.9.0"
|
15 | },
|
16 | "repository": {
|
17 | "type": "git",
|
18 | "url": "git+https://github.com/rbtdev/node-cmd-bcrypt.git"
|
19 | },
|
20 | "keywords": [
|
21 | "node",
|
22 | "bcrypt",
|
23 | "command-line",
|
24 | "script",
|
25 | "password",
|
26 | "commander"
|
27 | ],
|
28 | "bugs": {
|
29 | "url": "https://github.com/rbtdev/node-cmd-bcrypt/issues"
|
30 | },
|
31 | "homepage": "https://github.com/rbtdev/node-cmd-bcrypt#readme",
|
32 | "devDependencies": {
|
33 | "chai": "^3.5.0",
|
34 | "mocha": "^3.2.0"
|
35 | },
|
36 | "directories": {},
|
37 | "scripts": {
|
38 | "test": "mocha"
|
39 | }
|
40 | }
|