forked from gevorg/apache-crypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "apache-crypt",
"description": "Node.js module for Apache style password encryption using crypt(3).",
"version": "1.0.9",
"author": "Gevorg Harutyunyan (http://github.com/gevorg)",
"maintainers": [
{
"name": "gevorg",
"email": "[email protected]"
}
],
"homepage": "http://github.com/gevorg/apache-crypt",
"repository": {
"type": "git",
"url": "http://github.com/gevorg/apache-crypt.git"
},
"main": "./lib/apache-crypt.js",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/gevorg/apache-crypt/blob/master/LICENSE"
}
],
"bugs": {
"url": "http://github.com/gevorg/apache-crypt/issues"
},
"devDependencies": {
"nodeunit": "0.9.0"
},
"engines": {
"node": ">=0.4.1"
},
"scripts": {
"test": "node ./node_modules/nodeunit/bin/nodeunit tests"
},
"keywords": [
"node",
"apache",
"crypt",
"password",
"htpasswd"
],
"dependencies": {
"apache-md5": "^1.0.2",
"unix-crypt-td-js": "^1.0.0"
}
}