-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 927 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
{
"name": "cassandra-store",
"description": "Implementation of the session storage in Apache Cassandra as express middleware.",
"version": "5.1.0",
"author": {
"name": "Web Compliance Center",
"email": "[email protected]"
},
"dependencies": {
"cassandra-driver": "3.5.0",
"express-session": "1.15.6"
},
"devDependencies": {
"mocha": "5.2.0"
},
"homepage": "https://imergo.com/solutions/opensource.html",
"main": "./lib/CassandraStore",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/webcc/cassandra-store.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"scripts": {
"test": "mocha --exit --reporter spec --timeout 10000 test/*.js"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=10"
}
}