-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.22 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": "hide",
"version": "6.0.0",
"description": "Open source, AES-256 bit encrypted password manager with all encrypted passwords stored locally on your machine.",
"author": "Lance Whatley <whatl3y@gmail.com> (https://lance.to)",
"license": "MIT",
"engines": {
"node": ">= 12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/whatl3y/hide.git"
},
"scripts": {
"build": "gulp build",
"test": "mocha --require ts-node/register --recursive './src/**/*.spec.ts'"
},
"bin": {
"hide": "./dist/hide"
},
"devDependencies": {
"@types/columnify": "^1.5.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.22",
"@types/uuid": "^8.0.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-plumber": "^1.2.1",
"gulp-uglify-es": "^2.0.0",
"mocha": "^8.0.1",
"ts-loader": "^8.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack-node-externals": "^2.3.0",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"bunyan": "^1.8.14",
"colors": "^1.4.0",
"columnify": "^1.5.4",
"csv-parse": "^4.10.1",
"minimist": "^1.2.5",
"root-require": "^0.3.1",
"uuid": "^8.2.0"
}
}