Skip to content

Commit

Permalink
Add package.json and .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
brianloveswords committed Sep 19, 2012
1 parent 83cd50e commit 449e9a8
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- 0.6
- 0.8
notifications:
email:
recipients:
- brianloveswords@gmail.com
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# oneshot [![Build Status](https://secure.travis-ci.org/brianloveswords/oneshot.png?branch=master)](http://travis-ci.org/brianloveswords/oneshot)

Testing server for serving a single resource and shutting down.


28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "oneshot",
"version": "0.1.0",
"description": "Tiny little server for making one request and shutting down. Useful for testing.",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"lodash": "~0.7.0"
},
"devDependencies": {
"tap": "~0.3.1"
},
"scripts": {
"test": "./node_modules/.bin/tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/brianloveswords/oneshot.git"
},
"keywords": [
"testing",
"server"
],
"author": "Brian J. Brennan",
"license": "MIT"
}
File renamed without changes.

0 comments on commit 449e9a8

Please sign in to comment.