-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 961 Bytes
/
package.json
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
{
"name": "paswo",
"version": "1.0.2",
"description": "CLI utility that generates, hashes, and stores passwords",
"main": "index.js",
"scripts": {
"test": "mocha test/database-test.js && mocha test/hash-create-test.js"
},
"author": "Kashish Arora",
"license": "MIT",
"preferGlobal": true,
"bin": {
"paswo": "./index.js"
},
"dependencies": {
"bcrypt": "^1.0.3",
"chalk": "^2.3.1",
"clipboardy": "^1.2.3",
"fs": "0.0.1-security",
"inquirer": "^5.1.0",
"node-localstorage": "^1.3.0",
"sqlite3": "^3.1.13",
"vorpal": "^1.12.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.1",
"mock-stdin": "^0.3.1"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/kashiish/paswo.git"
},
"keywords": [
"CLI",
"password-manager",
"password",
"hash",
"encrypt",
"safe"
]
}