-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "keepy-cli",
"version": "1.4.0",
"description": "A CLI tool to save encripted KEY=VALUE pairs.",
"main": "cli.js",
"bin": {
"keepy": "cli.js"
},
"scripts": {
"test": "npm run lint && tap --coverage -j1 test/**/*.test.js",
"coveralls": "tap --coverage-report=text-lcov | node ./node_modules/coveralls/bin/coveralls.js",
"test-single": "tap",
"lint": "standard",
"lint:fix": "standard --fix",
"coverage": "npm test && npm run coveralls"
},
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Eomm/keepy-cli"
},
"keywords": [
"cli",
"store",
"environment",
"encryption",
"key-value",
"utility",
"keepy"
],
"engines": {
"node": ">=10.5.0"
},
"dependencies": {
"chalk": "^4.0.0",
"commist": "^1.1.0",
"dotenv": "^8.0.0",
"enquirer": "^2.3.1",
"file-utils-easy": "^1.2.0",
"semver": "^7.1.1",
"yargs-parser": "^20.2.2"
},
"devDependencies": {
"coveralls": "^3.0.5",
"rimraf": "^3.0.0",
"standard": "^16.0.2",
"tap": "^14.2.3"
}
}