-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 972 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
{
"name": "saltpass-cli",
"version": "0.3.0",
"description": "Command-line utility for salting passwords",
"main": "index.js",
"bin": {
"saltpass": "./index.js"
},
"scripts": {
"lint": "git ls-files | grep '.js' | xargs yarn -s eslint --color",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"node-getopt-long": ">=0.4.0",
"prompt": ">=1.0.0",
"saltthepass": "0.3.0"
},
"keywords": [
"salt",
"password",
"security"
],
"author": "Daniel Perrett",
"license": "MIT",
"url": "https://github.com/pdl/saltpass-cli",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdl/saltpass-cli.git"
},
"bugs": {
"url": "https://github.com/pdl/saltpass-cli/issues"
},
"homepage": "https://github.com/pdl/saltpass-cli#readme"
}