-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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
{
"author": "nic ferrier, nic@ferrier.me.uk",
"name": "keepie",
"description": "Keepie keeps passwords",
"license": "MIT",
"version": "0.0.31",
"keywords": [
"postgresql",
"microservice",
"secrets",
"passwords"
],
"repository": {
"type": "git",
"url": "https://github.com/nicferrier/keepie"
},
"main": "./server.js",
"scripts": {
"test": "node ./test-keepie.js ; node test-fs-export.js"
},
"bin": {
"make-pgboot": "./server.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"form-data": "^2.3.2",
"fresh": "^0.5.2",
"multer": "^1.3.0",
"node-fetch": "^2.1.2",
"pg": "^7.4.3",
"psql-web-app": "0.0.6",
"serve-index": "^1.9.1",
"simple-auth-4-express": "0.0.8",
"sse-node": "1.0.2"
},
"devDependencies": {
"deep-equal": "1.0.1",
"assert-promise": "0.0.3",
"sha1": "1.1.1"
},
"engines": {
"node": ">=10.0"
}
}