Skip to content

Commit

Permalink
Be more nodeish... package.json and gitignore
Browse files Browse the repository at this point in the history
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
kastner committed Feb 15, 2012
1 parent 5076456 commit dcfcd48
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
24 changes: 24 additions & 0 deletions package.json
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"
}
}

0 comments on commit dcfcd48

Please sign in to comment.