UNPKG

1.24 kBJSONView Raw
1{
2 "name": "pwpush-cli",
3 "description": "A nodeJS CLI wrapper to easily push passwords to pwpush.com",
4 "version": "0.7.1",
5 "author": {
6 "name": "Leandro Nunes",
7 "email": "dr1design@gmail.com",
8 "url": "https://lnfnunes.com.br"
9 },
10 "license": "MIT",
11 "repository": "https://github.com/lnfnunes/pwpush-cli",
12 "keywords": [
13 "cli",
14 "bin",
15 "cmd",
16 "command",
17 "tool",
18 "util",
19 "utility",
20 "terminal",
21 "console",
22 "password",
23 "security",
24 "pwd",
25 "pwpush",
26 "PasswordPusher"
27 ],
28 "bugs": {
29 "url": "https://github.com/lnfnunes/pwpush-cli"
30 },
31 "bin": {
32 "pwpush": "cli.js"
33 },
34 "main": "cli.js",
35 "engines": {
36 "node": ">=8"
37 },
38 "scripts": {
39 "prepublish": "npm test",
40 "test": "jest --config .jestrc.json",
41 "dev": "npm test -- --watch"
42 },
43 "husky": {
44 "hooks": {
45 "pre-commit": "npm test"
46 }
47 },
48 "dependencies": {
49 "axios": "^0.18.0",
50 "minimist": "^1.2.0",
51 "node-clipboard": "^1.2.0",
52 "ora": "^2.0.0",
53 "owasp-password-strength-test": "^1.3.0",
54 "user-settings": "^0.2.0"
55 },
56 "devDependencies": {
57 "coveralls": "^3.0.0",
58 "husky": "^0.15.0-rc.13",
59 "jest": "^22.4.2",
60 "nock": "^9.2.3"
61 }
62}