-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 909 Bytes
/
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
{
"name": "@puppet/session-pouchdb-store",
"version": "1.0.1",
"description": "PouchDB express session store. Can do realtime session data synchronization via PouchDB server",
"author": "",
"license": "MIT",
"publishConfig": {
"registry": "https://artifactory.delivery.puppetlabs.net/artifactory/api/npm/npm/"
},
"repository": "Ioannis-Karasavvaidis/session-pouchdb-store",
"main": "index.js",
"keywords": [
"pouchdb",
"couchdb",
"session",
"store",
"express",
"expressjs",
"middleware",
"realtime",
"synchronization"
],
"scripts": {
"test": "mocha"
},
"dependencies": {
"express-session": "^1.15.6",
"extend": "^3.0.2",
"pouchdb": "^7.0.0",
"pouchdb-adapter-memory": "^7.0.0"
},
"devDependencies": {
"eslint": "^5.15.1",
"express": "^4.16.4",
"express-pouchdb": "^4.1.0",
"mocha": "^6.0.2"
}
}