This commit is contained in:
James Halliday 2013-06-25 01:16:39 -07:00
Родитель a5bf46ac9b
Коммит 84c0370636
4 изменённых файлов: 19 добавлений и 1 удалений

4
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,4 @@
language: node_js
node_js:
- "0.8"
- "0.10"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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

Просмотреть файл

@ -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);