Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Add test suite to packages. #18

Merged
merged 1 commit into from Jun 20, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
42 changes: 27 additions & 15 deletions package.json
@@ -1,16 +1,28 @@
{
"name": "nomnom",
"description": "Option parser with generated usage and commands",
"version": "1.5.1",
"author": "Heather Arthur <fayearthur@gmail.com>",
"repository": {
"type": "git",
"url": "http://github.com/harthur/nomnom.git"
},
"main": "./nomnom",
"keywords": ["arguments", "option parser", "command line", "options", "parser"],
"dependencies": {
"underscore": "1.1.x",
"colors": "0.5.x"
}
}
"name": "nomnom",
"description": "Option parser with generated usage and commands",
"version": "1.5.1",
"author": "Heather Arthur <fayearthur@gmail.com>",
"scripts": {
"test": "./node_modules/.bin/nodeunit test/*.js"
},
"repository": {
"type": "git",
"url": "http://github.com/harthur/nomnom.git"
},
"main": "./nomnom",
"keywords": [
"arguments",
"option parser",
"command line",
"options",
"parser"
],
"dependencies": {
"underscore": "1.1.x",
"colors": "0.5.x"
},
"devDependencies": {
"nodeunit": "~0.7.4"
}
}