https://github.com/statsd/statsd
Raw File
Tip revision: 7c07eec4e7cebbd376d8313b230cea96c6571423 authored by Elliot Blackburn on 22 August 2023, 12:52:19 UTC
Correct container image tagging
Tip revision: 7c07eec
package.json
{
  "name": "statsd",
  "version": "0.10.2",
  "description": "Network daemon for the collection and aggregation of realtime application metrics",
  "author": {
    "name": "Etsy",
    "url": "https://codeascraft.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/statsd/statsd",
  "bugs": "https://github.com/statsd/statsd/issues",
  "keywords": [
    "statsd",
    "etsy",
    "metric",
    "aggregation",
    "realtime"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/statsd/statsd.git"
  },
  "engines": {
    "node": ">=8"
  },
  "dependencies": {
    "generic-pool": "2.2.0"
  },
  "devDependencies": {
    "nodeunit": "^0.11.3",
    "underscore": "1.4.x",
    "temp": "0.4.x"
  },
  "optionalDependencies": {
    "modern-syslog": "1.2.0",
    "hashring": "3.2.0",
    "winser": "=0.1.6"
  },
  "bin": {
    "statsd": "./bin/statsd"
  },
  "scripts": {
    "test": "node run_tests.js",
    "start": "node stats.js config.js",
    "install-windows-service": "node_modules\\.bin\\winser -i",
    "uninstall-windows-service": "node_modules\\.bin\\winser -r"
  }
}
back to top