-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.81 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
70
71
{
"name": "uriel",
"version": "2.1.0",
"description": "A NodeJS statsd agent to push memory, cpu, network, swap, diskio, and disk usage over UDP",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "nyc mocha",
"build": "gulp",
"fix": "gulp fix",
"lint": "gulp lint",
"coverage": "nyc --reporter=lcov mocha && cat ./coverage/lcov.info | codacy-coverage",
"pretty": "gulp pretty",
"config": "node ./scripts/configure.js",
"deconfig": "node ./scripts/deconfigure.js",
"docker-build": "docker build -t uriel .",
"docker-run": "docker run -d uriel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutofSyncStudios/uriel.git"
},
"keywords": [
"statsd-agent",
"statsd",
"agent",
"node",
"nodejs",
"telegraf",
"DogStatsD"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutofSyncStudios/uriel/issues"
},
"homepage": "https://github.com/OutofSyncStudios/uriel#readme",
"directories": {
"test": "test"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.2.0",
"hot-shots": "^8.3.0",
"inquirer": "^8.0.0",
"lodash.assign": "^4.2.0",
"lodash.isnil": "^4.0.0",
"lodash.merge": "^4.6.2",
"lodash.snakecase": "^4.1.1",
"lodash.topairs": "^4.3.0",
"logstub": "^1.3.0",
"moment": "^2.29.1",
"systeminformation": "^5.6.8",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-match": "^1.1.1",
"codacy-coverage": "^3.4.0",
"eslint": "^7.23.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-prettier": "^3.0.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1"
}
}