From e79860e672529c0fbfa9f7d9a598eb29876c4282 Mon Sep 17 00:00:00 2001 From: Gregg Caines Date: Sun, 26 Jan 2014 14:56:04 -0800 Subject: [PATCH] add .gitignore. fix "main" script location. add `npm test`. --- .gitignore | 2 ++ package.json | 45 ++++++++++++++++++++++++++++++++------------- 2 files changed, 34 insertions(+), 13 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..05fd69b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +walk-test diff --git a/package.json b/package.json index a679d3e..9812e7c 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,23 @@ { - "name" : "walk", - "description" : "A node port of python's os.walk", - "url" : "github.com/coolaj86/node-walk", - "keywords" : ["util", "os", "sys", "fs", "walk", "walkSync"], - "author" : "AJ ONeal ", - "contributors" : [], - "dependencies" : { - "forEachAsync": "~2.2" - }, - "lib" : ".", - "main" : "./walk.js", - "version" : "2.3.0-alpha2", + "name": "walk", + "description": "A node port of python's os.walk", + "url": "http://github.com/coolaj86/node-walk", + "keywords": [ + "util", + "os", + "sys", + "fs", + "walk", + "walkSync" + ], + "author": "AJ ONeal ", + "contributors": [], + "dependencies": { + "forEachAsync": "~2.2" + }, + "lib": ".", + "main": "./lib/walk.js", + "version": "2.3.1", "repository": { "url": "git://github.com/coolaj86/node-walk.git" }, @@ -23,5 +30,17 @@ "type": "Apache2", "url": "http://opensource.org/licenses/apache2.0.php" } - ] + ], + "bugs": { + "url": "https://github.com/coolaj86/node-walk/issues" + }, + "homepage": "https://github.com/coolaj86/node-walk", + "directories": { + "example": "examples", + "test": "test" + }, + "devDependencies": {}, + "scripts": { + "test": "./test/walk-test.sh" + } }