-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.42 KB
/
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
49
50
51
52
53
54
55
56
57
58
{
"name": "buttercup-cli",
"version": "0.5.0",
"description": "Buttercup command line application",
"main": "source/index.js",
"bin": {
"bcup": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x ./dist/index.js && echo \"Don't forget to shutdown the daemon before testing!\"",
"test": "echo \"None yet...\""
},
"files": [
"dist/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/buttercup-cli.git"
},
"keywords": [
"buttercup",
"password",
"manager",
"security",
"credentials"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/buttercup-cli/issues"
},
"homepage": "https://github.com/perry-mitchell/buttercup-cli#readme",
"dependencies": {
"body-parser": "^1.19.0",
"boxen": "^4.2.0",
"buttercup": "^5.5.0",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"configstore": "^5.0.1",
"crypto-random-string": "^3.3.0",
"express": "^4.17.1",
"inquirer": "^7.3.3",
"iocane": "^4.2.0",
"minimist": "^1.2.5",
"ms": "^2.1.2",
"node-fetch": "^2.6.1",
"pify": "^5.0.0",
"pretty-error": "^2.1.1",
"pw": "0.0.4",
"stat-mode": "^1.0.0",
"user-home": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/node": "^14.11.2",
"typescript": "^4.0.3"
}
}