[Pkg-javascript-commits] [node-subarg] 07/17: travis, testling badges
Bastien Roucariès
rouca at moszumanska.debian.org
Fri Aug 25 19:28:11 UTC 2017
This is an automated email from the git hooks/post-receive script.
rouca pushed a commit to branch master
in repository node-subarg.
commit 8d458c82897a6516a6bec60364966912e0f3893f
Author: James Halliday <mail at substack.net>
Date: Sat Feb 8 20:38:20 2014 -0800
travis, testling badges
---
.travis.yml | 4 ++++
LICENSE | 18 ++++++++++++++++++
package.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++
readme.markdown | 4 ++++
4 files changed, 73 insertions(+)
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..cc4dba2
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,4 @@
+language: node_js
+node_js:
+ - "0.8"
+ - "0.10"
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..ee27ba4
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,18 @@
+This software is released under the MIT license:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..ecf107b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,47 @@
+{
+ "name": "subarg",
+ "version": "0.0.0",
+ "description": "parse arguments with recursive contexts",
+ "main": "index.js",
+ "dependencies": {
+ "minimist": "~0.0.7"
+ },
+ "devDependencies": {
+ "tape": "~2.3.2"
+ },
+ "scripts": {
+ "test": "tape test/*.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/substack/subarg.git"
+ },
+ "homepage": "https://github.com/substack/subarg",
+ "keywords": [
+ "argument",
+ "option",
+ "parser",
+ "parsing",
+ "flags",
+ "command-line",
+ "cli",
+ "recursive",
+ "minimist"
+ ],
+ "author": {
+ "name": "James Halliday",
+ "email": "mail at substack.net",
+ "url": "http://substack.net"
+ },
+ "license": "MIT",
+ "testling": {
+ "files": "test/*.js",
+ "browsers": [
+ "ie/8..latest",
+ "firefox/16", "firefox/latest", "firefox/nightly",
+ "chrome/22", "chrome/latest", "chrome/canary",
+ "opera/12..latest", "opera/next",
+ "safari/5.1..latest"
+ ]
+ }
+}
diff --git a/readme.markdown b/readme.markdown
index 8d3549c..0b17946 100644
--- a/readme.markdown
+++ b/readme.markdown
@@ -3,6 +3,10 @@
parse arguments with recursive contexts using
[minimist](https://npmjs.org/package/minimist)
+[![testling badge](https://ci.testling.com/substack/subarg.png)](https://ci.testling.com/substack/subarg)
+
+[![build status](https://secure.travis-ci.org/substack/subarg.png)](http://travis-ci.org/substack/subarg)
+
This module is useful if you need to pass arguments into a piece of code without
coordinating ahead of time with the main program, like with a plugin system.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-subarg.git
More information about the Pkg-javascript-commits
mailing list