-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "redis-metrics",
"version": "2.0.0",
"description": "Easy metric tracking and aggregation using Redis",
"main": "lib/metrics.js",
"scripts": {
"exectests": "node_modules/.bin/nyc ./node_modules/.bin/_mocha --exit",
"codecov": "node_modules/.bin/nyc ./node_modules/.bin/_mocha --exit && node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "node_modules/.bin/eslint lib test --quiet",
"test": "npm run exectests && npm run lint",
"testci": "npm run lint && npm run codecov",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/getconversio/redis-metrics.git"
},
"bugs": {
"url": "https://github.com/getconversio/redis-metrics/issues"
},
"keywords": [
"redis",
"metrics",
"counter",
"trend"
],
"author": "Conversio <[email protected]> (https://conversio.com)",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.10",
"moment": "^2.22.2",
"redis": "^2.5.3"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^4.1.1",
"eslint": "^5.2.0",
"eslint-config-conversio": "^2.2.0",
"eslint-plugin-mocha": "^5.1.0",
"ioredis": "^2.5.0",
"jsdoc": "^3.4.3",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"sinon": "^6.1.4"
}
}