-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.08 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": "haraka-nosql",
"version": "0.4.5",
"description": "Unified NoSQL API for RAM, SSC, or Redis",
"author": {
"name": "Matt Simerson",
"url": "https://github.com/haraka/haraka-nosql"
},
"main": "index.js",
"homepage": "https://github.com/haraka/haraka-nosql",
"keywords": [
"email",
"mail",
"nosql",
"redis",
"strong store cluster"
],
"bugs": {
"url": "https://github.com/haraka/haraka-nosql/issues"
},
"config": {
"blanket": {
"pattern": "index.js"
}
},
"scripts": {
"test": "npx mocha",
"lint": "npx eslint *.js test",
"lintfix": "npx eslint --fix *.js test",
"cover": "NOSQL_COVERAGE=1 npx mocha --require blanket --reporter mocha-lcov-reporter | npx coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/haraka/haraka-nosql.git"
},
"devDependencies": {
"eslint": ">=8",
"eslint-plugin-haraka": "*",
"mocha": ">=9"
},
"license": "MIT",
"dependencies": {},
"optionalDependencies": {
"redis": "^4.3.0",
"strong-store-cluster": "^1.0.0"
}
}