-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 898 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
{
"name": "haraka-plugin-auth-enc-file",
"version": "1.0.3",
"description": "Haraka plugin that uses an SHA512 salted and hashed password file to authenticate users",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint *.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AuspeXeu/haraka-plugin-auth-enc-file.git"
},
"keywords": [
"haraka",
"plugin",
"authentication"
],
"author": "Christian Vaas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AuspeXeu/haraka-plugin-auth-enc-file/issues"
},
"homepage": "https://github.com/AuspeXeu/haraka-plugin-auth-enc-file#readme",
"devDependencies": {
"eslint": ">=6",
"eslint-plugin-haraka": "*",
"haraka-test-fixtures": "*",
"mocha": "*"
},
"dependencies": {
"sha512crypt-node": "0.1.0"
}
}