Skip to content

Commit

Permalink
badges
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Jun 25, 2013
1 parent a5bf46a commit 84c0370
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
@@ -0,0 +1,4 @@
language: node_js
node_js:
- "0.8"
- "0.10"
10 changes: 10 additions & 0 deletions package.json
Expand Up @@ -10,6 +10,16 @@
"scripts": {
"test": "tap test/*.js"
},
"testling" : {
"files" : "test/*.js",
"browsers" : [
"ie/6..latest",
"ff/3.6", "firefox/latest",
"chrome/10", "chrome/latest",
"safari/5.1", "safari/latest",
"opera/12"
]
},
"repository": {
"type": "git",
"url": "git://github.com/substack/minimist.git"
Expand Down
4 changes: 4 additions & 0 deletions readme.markdown
Expand Up @@ -5,6 +5,10 @@ parse argument options
This module is the guts of optimist's argument parser without all the
fanciful decoration.

[![browser support](https://ci.testling.com/substack/minimist.png)](http://ci.testling.com/substack/minimist)

[![build status](https://secure.travis-ci.org/substack/minimist.png)](http://travis-ci.org/substack/minimist)

# example

``` js
Expand Down
2 changes: 1 addition & 1 deletion test/whitespace.js
@@ -1,5 +1,5 @@
var parse = require('../');
var test = require('tap').test;
var test = require('tape');

test('whitespace should be whitespace' , function (t) {
t.plan(1);
Expand Down

0 comments on commit 84c0370

Please sign in to comment.