-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 936 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 936 Bytes
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
{
"name": "bcup-cli",
"version": "1.3.0",
"description": "Lightweight Buttercup password manager cli",
"type": "module",
"bin": {
"bcup-cli": "bin/cli.mjs"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"bin/",
"src"
],
"keywords": [
"buttercup",
"nodejs",
"cli",
"bcup-cli"
],
"author": "Ignacio Aliende García <ialiendeg@gmail.com>",
"license": "MIT",
"repository": "https://github.com/Usabi/bcup-cli",
"dependencies": {
"@types/node": "^13.9.2",
"arg": "^4.1.3",
"buttercup": "^7.7.1",
"chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"config": "^3.3.0",
"crypto-random-string": "^3.3.0",
"global": "^4.4.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"prompt-sync": "^4.2.0",
"prompt-sync-history": "^1.0.1"
},
"devDependencies": {
"tsx": "^4.21.0"
}
}