1
0
Fork 0
arangodb/js/apps/system/_system/simple-auth/APP/manifest.json

45 lines
826 B
JSON

{
"name": "simple-auth",
"description": "Simple password-based authentication for Foxx.",
"author": "ArangoDB GmbH",
"version": "0.1",
"license": "Apache License, Version 2.0",
"isSystem": true,
"engines": {
"arangodb": "^2.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/arangodb/arangodb.git"
},
"contributors": [
{
"name": "Alan Plum",
"email": "me@pluma.io"
}
],
"exports": {
"auth": "auth.js"
},
"defaultDocument": "",
"lib": ".",
"configuration": {
"hashMethod": {
"description": "Cryptographic hash function to use for new passwords.",
"type": "string",
"default": "sha256"
},
"saltLength": {
"description": "Length of new salts.",
"type": "integer",
"default": 16
}
}
}