This repository was archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.31 KB
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
54
55
56
57
58
59
60
61
{
"name": "@financialforcedev/orizuru-transport-redis",
"version": "3.1.1",
"description": "Redis transport layer for the orizuru package",
"main": "src/lib/index.js",
"scripts": {
"doc": "jsdoc src/lib -r -d doc --readme readme.md",
"pretest": "eslint src",
"test": "nyc --exclude src/example mocha --recursive src/spec"
},
"repository": {
"type": "git",
"url": "https://github.com/financialforcedev/orizuru-transport-redis"
},
"keywords": [
"redis",
"publish",
"subscribe",
"heroku",
"worker",
"dyno",
"orizuru"
],
"author": "financialforce",
"license": "BSD-3-Clause",
"dependencies": {
"lodash": "^4.17.10",
"redis": "^2.8.0"
},
"devDependencies": {
"@financialforcedev/eslint-config": "^4.0.0",
"app-root-path": "^2.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"proxyquire": "^2.0.1",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src"
],
"reporter": [
"lcov",
"html",
"text",
"text-summary"
],
"cache": true,
"all": true
}
}