-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "apache-crypt",
"description": "Node.js module for Apache style password encryption using crypt(3).",
"version": "1.2.6",
"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": "./src/index.js",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/gevorg/apache-crypt/blob/master/LICENSE"
}
],
"license": "MIT",
"bugs": {
"url": "http://github.com/gevorg/apache-crypt/issues"
},
"dependencies": {
"unix-crypt-td-js": "^1.1.4"
},
"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": [
"apache",
"crypt",
"password",
"htpasswd"
]
}