-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 952 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
47
48
{
"name": "shroud-cli",
"version": "0.3.0",
"description": "An filesystem-based CLI password manager",
"bin": {
"shroud": "./lib/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"build": "mkdir -p build",
"prepare": "npm run test && mkdir -p build",
"test": "prettier --check lib/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/taravancil/shroud-cli"
},
"author": {
"name": "Tara Vancil",
"email": "[email protected]"
},
"keywords": [
"password",
"password manager",
"secrets",
"secret store",
"encryption"
],
"license": "MIT",
"devDependencies": {
"husky": "^3.1.0",
"prettier": "^1.19.1",
"standard": "^8.6.0"
},
"dependencies": {
"copy-paste": "^1.3.0",
"inquirer": "^1.2.3",
"minimist": "^1.2.0",
"shroud": "^0.6.1"
},
"engines": {
"node": ">=8.x"
}
}