-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "vault",
"version": "1.0.0",
"description": "A secure credentials manager",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:prod": "eslint \"src/**\" --fix && webpack --mode=production && npm install -g .",
"deploy:dev": "eslint \"src/**\" --fix && webpack --mode=development && npm install"
},
"keywords": [
"vault",
"encrypted",
"password",
"credentials",
"offline",
"manager"
],
"author": "@thedev.ay",
"license": "MIT",
"homepage": "https://github.com/thedev-ay/vault",
"repository": {
"type": "git",
"url": "https://github.com/thedev-ay/vault.git"
},
"dependencies": {
"chalk": "^4.0.0",
"chalk-table": "^1.0.2",
"clear": "^0.1.0",
"commander": "^5.0.0",
"configstore": "^5.0.1",
"figlet": "^1.3.0",
"inquirer": "^7.1.0"
},
"bin": {
"vault": "./dist/main.js"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.8.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}