-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 803 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 803 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
{
"name": "pass-server-node",
"license": "GNU GPL v3.0",
"description": "Browser (chrome) extension for read-only access to a pass-maintained password file, hosted elsewhere.",
"author": "Cornelis Poppema",
"version": "0.3.0",
"engines": {
"node": ">= 4.2.6"
},
"dependencies": {
"bluebird": "^3.1.5",
"body-parser": "^1.14.2",
"connect": "^3.4.1",
"connect-route": "^0.1.5",
"crc": "^3.4.0",
"dateformat": "^1.0.12",
"line-reader": "^0.3.0",
"openpgp": "^2.1.0",
"unorm": "^1.4.1",
"walk": "^2.3.9",
"winston": "^2.2.0"
},
"devDependencies": {},
"config": {
"port": "3000",
"password_store_dir": "~/.password-store",
"log_level": "error",
"log_dir": "./log"
},
"scripts": {
"start": "node ./server.js"
}
}