From 7afe2c5e2de4ba08809dc8a8de4b6f319dfc490a Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 17 Dec 2013 13:07:58 -0800 Subject: [PATCH] Add a package.json. --- package.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..a444327 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "nvm", + "version": "0.2.0", + "description": "Node Version Manager - Simple bash script to manage multiple active node.js versions", + "directories": { + "test": "test" + }, + "scripts": { + "test": "urchin test", + "test/fast": "urchin -f test/fast", + "test/slow": "urchin -f test/slow" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/nvm.git" + }, + "keywords": [ + "nvm", + "node", + "version", + "manager" + ], + "author": "Tim Caswell ", + "license": "MIT", + "bugs": { + "url": "https://github.com/creationix/nvm/issues" + }, + "homepage": "https://github.com/creationix/nvm", + "devDependencies": { + "urchin": "~0.0.2" + } +} +