htpasswd-js
Version:
Pure JS htpasswd authentication
38 lines (37 loc) • 986 B
JSON
{
"name": "htpasswd-js",
"version": "1.0.2",
"description": "Pure JS htpasswd authentication",
"author": "Steve Ripberger",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sripberger/htpasswd-js.git"
},
"keywords": [
"htpasswd"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint . || exit 0",
"unit": "mocha ./test/setup.js ./test/unit --recursive -R spec || exit 0",
"integration": "mocha ./test/setup.js ./test/integration --recursive -R spec || exit 0",
"test": "npm run unit; npm run integration",
"docs": "documentation build -f html -o docs"
},
"devDependencies": {
"chai": "^3.5.0",
"documentation": "^5.2.2",
"eslint": "^3.19.0",
"mocha": "^3.4.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0"
},
"dependencies": {
"apache-crypt": "^1.2.1",
"apache-md5": "^1.1.2",
"bcryptjs": "^2.4.3",
"fs-extra": "^4.0.2",
"xerror": "^1.1.2"
}
}