This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "monkit",
"author": "Replicated, Inc.",
"version": "0.5.0",
"engines": {
"node": ">=4.3.2"
},
"license": "MIT",
"repository": "https://github.com/retracedhq/monkit.git",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/retracedhq/monkit/issues"
},
"description": "Application Metrics Toolkit for NodeJS/Typescript",
"keywords": [
"audit",
"log",
"retraced",
"replicated",
"metrics",
"statsd",
"monitoring"
],
"contributors": [
"Dexter Horthy <[email protected]>"
],
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/",
"CHANGELOG"
],
"scripts": {
"prepublish": "rm -rf ./dist && tslint --project ./tsconfig.json && tsc -p .",
"test": "rm -rf ./dist && tslint --project ./tsconfig.json && tsc -p . && mocha ./dist/test/*.js",
"cover": "rm -rf ./dist && tslint --project ./tsconfig.json && tsc -p . && istanbul cover _mocha -- ./dist/test/*.js",
"cover-xml": "rm -rf ./dist && tslint --project ./tsconfig.json && tsc -p . && istanbul cover _mocha -- -R mocha-junit-reporter ./dist/test/*.js",
"report-coverage": "codeclimate-test-reporter < ./coverage/lcov.info",
"publish-if-version-changed": "publish"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/lodash": "^4.14.52",
"@types/node": "^7.0.0",
"@types/request": "^0.0.42",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.1",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-typescript": "^1.0.15",
"nock": "^9.0.11",
"publish": "^0.6.0",
"ts-node": "^4.1.0",
"tslint": "^4.3.1",
"typemoq": "^1.4.1",
"typescript": "^2.2.2"
},
"dependencies": {
"@types/statsd-client": "^0.1.30",
"form-urlencoded": "^1.5.0",
"hot-shots": "^5.0.1",
"lodash": "^4.17.5",
"metrics": "^0.1.11",
"request": "^2.84.0",
"statsd-client": "^0.2.4"
}
}