From dcfcd4848ff7b65c078ca22bb89a2b884aca4904 Mon Sep 17 00:00:00 2001 From: Erik Kastner Date: Wed, 15 Feb 2012 16:22:24 -0500 Subject: [PATCH] Be more nodeish... package.json and gitignore Thanks for librato for the package.json (with edits). This is the start of getting StatsD more integrated with the Node / NPM Ecosystem. "npm test" now runs the tests, and we have a version number and stuff. --- .gitignore | 1 + package.json | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..3c3629e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/package.json b/package.json new file mode 100644 index 00000000..891d9343 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "statsd", + "description": "A simple, lightweight network daemon to collect metrics over UDP", + "author": "Etsy", + "scripts": { + "test": "./run_tests.sh" + }, + "repository": { + "type": "git", + "url": "https://github.com/etsy/statsd.git" + }, + "version": "0.1.0", + "dependencies": { + }, + "devDependencies": { + "nodeunit": "0.6.x", + "async": "0.1.x", + "underscore": "1.2.x", + "temp": "0.4.x" + }, + "engine": { + "node" : ">=0.4" + } +}