mirror of https://gitee.com/bigwinds/arangodb
48 lines
855 B
JSON
48 lines
855 B
JSON
{
|
|
"name": "sessions",
|
|
"description": "Internal Session storage for Foxx.",
|
|
"author": "ArangoDB GmbH",
|
|
"version": "1.0.0",
|
|
"license": "Apache License, Version 2.0",
|
|
"isSystem": true,
|
|
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/arangodb/arangodb.git"
|
|
},
|
|
|
|
"contributors": [
|
|
{
|
|
"name": "Alan Plum",
|
|
"email": "me@pluma.io"
|
|
}
|
|
],
|
|
|
|
"exports": {
|
|
"sessionStorage": "storage.js"
|
|
},
|
|
|
|
"defaultDocument": "",
|
|
|
|
"lib": ".",
|
|
|
|
"scripts": {
|
|
"setup": "setup.js"
|
|
},
|
|
|
|
"tests": "test/**",
|
|
|
|
"configuration": {
|
|
"sidTimestamp": {
|
|
"description": "Append a timestamp to the session id.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"sidLength": {
|
|
"description": "Length of the random part of the session id",
|
|
"type": "integer",
|
|
"default": 20
|
|
}
|
|
}
|
|
}
|