From a84fb2f93a3de8bb4a757738a87d282e6fa8d871 Mon Sep 17 00:00:00 2001 From: Faisalman Date: Sun, 29 Jul 2012 04:14:52 +0700 Subject: [PATCH] npm revised package.json --- package.json | 51 +++++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/package.json b/package.json index b676e7b..5f0d4db 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,10 @@ { - "title" : "UA-Parser.js", - "name" : "ua-parser-js", - "version" : "0.3.0", - "author" : { - "name" : "Faisal Salman", - "email" : "fyzlman@gmail.com", - "url" : "http://faisalman.com" - }, - "description" : "Lightweight JavaScript-based user-agent parser", - "keywords" : [ + "title": "UA-Parser.js", + "name": "ua-parser-js", + "version": "0.3.0", + "author": "Faisal Salman (http://faisalman.com)", + "description": "Lightweight JavaScript-based user-agent parser", + "keywords": [ "user-agent", "parser", "browser", @@ -16,28 +12,35 @@ "os", "device" ], - "homepage" : "http://faisalman.github.com/ua-parser-js", + "homepage": "http://github.com/faisalman/ua-parser-js", "contributors": [ - { - "name" : "Faisal Salman", - "email" : "fyzlman@gmail.com" - } + "Faisal Salman " ], - "main" : "ua-parser.js", + "main": "ua-parser", "repositories": [ { - "type" : "git", - "url" : "https://github.com/faisalman/ua-parser-js.git" + "type": "git", + "url": "https://github.com/faisalman/ua-parser-js.git" } ], - "licenses" : [ + "licenses": [ { - "type" : "GPLv2", - "url" : "http://www.gnu.org/licenses/gpl-2.0.html" + "type": "GPLv2", + "url": "http://www.gnu.org/licenses/gpl-2.0.html" }, { - "type" : "MIT", - "url" : "http://www.opensource.org/licenses/mit-license.php" + "type": "MIT", + "url": "http://www.opensource.org/licenses/mit-license.php" } - ] + ], + "engines": { + "node": "*" + }, + "directories": { + "lib": "." + }, + "files": [ + "" + ], + "repository": "git://github.com/faisalman/ua-parser-js.git" }