forked from statsd/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} |