-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 986 Bytes
/
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
{
"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"
}
}