1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "http-auth",
- "description": "Node.js package for HTTP basic and digest access authentication.",
- "version": "4.1.9",
- "author": "Gevorg Harutyunyan (http://github.com/gevorg)",
- "maintainers": [
- {
- "name": "gevorg",
- "email": "gevorg.ha@gmail.com"
- }
- ],
- "homepage": "https://github.com/gevorg/http-auth",
- "repository": {
- "type": "git",
- "url": "http://github.com/gevorg/http-auth.git"
- },
- "main": "./src/http-auth.js",
- "licenses": [
- {
- "type": "MIT",
- "url": "http://github.com/gevorg/http-auth/blob/master/LICENSE"
- }
- ],
- "license": "MIT",
- "bugs": {
- "url": "http://github.com/gevorg/http-auth/issues"
- },
- "dependencies": {
- "apache-crypt": "^1.1.2",
- "apache-md5": "^1.0.6",
- "bcryptjs": "^2.4.3",
- "uuid": "^8.3.2"
- },
- "devDependencies": {
- "chai": "^4.2.0",
- "eslint": "^6.8.0",
- "eslint-config-prettier": "^6.10.0",
- "eslint-plugin-node": "^11.0.0",
- "eslint-plugin-prettier": "^3.1.2",
- "http-proxy": "^1.18.0",
- "mocha": "^7.0.1",
- "prettier": "^1.19.1",
- "request": "^2.88.0"
- },
- "engines": {
- "node": ">=8"
- },
- "scripts": {
- "test": "mocha",
- "pretest": "eslint --ignore-path .gitignore ."
- },
- "keywords": [
- "http",
- "basic",
- "digest",
- "access",
- "authentication"
- ]
- }
|