-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.2 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "htdigest",
"description": "Node.js package for HTTP Digest Authentication password file utility.",
"version": "2.2.8",
"author": "Gevorg Harutyunyan (http://github.com/gevorg)",
"maintainers": [
{
"name": "gevorg",
"email": "[email protected]"
}
],
"homepage": "http://github.com/gevorg/htdigest",
"repository": {
"type": "git",
"url": "http://github.com/gevorg/htdigest.git"
},
"bin": {
"htdigest": "./bin/htdigest"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/gevorg/htdigest/blob/master/LICENSE"
}
],
"license": "MIT",
"bugs": {
"url": "http://github.com/gevorg/htdigest/issues"
},
"dependencies": {
"commander": "^2.9.0",
"prompt": "^1.0.0"
},
"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",
"mocha": "^10.2.0",
"prettier": "^1.19.1"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "mocha",
"pretest": "eslint --ignore-path .gitignore ."
},
"keywords": [
"htdigest",
"http",
"digest",
"authentication"
]
}