From 75a3172d6fe4cbc752617060224704697c0a6806 Mon Sep 17 00:00:00 2001 From: Alan Gutierrez Date: Thu, 15 Aug 2013 00:47:26 -0400 Subject: [PATCH] Tidy `package.json`. --- package.json | 58 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 34 insertions(+), 24 deletions(-) diff --git a/package.json b/package.json index 3f55ac6..77cade9 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,36 @@ -{ "name": "relatable" -, "description": - "A lightweight JSON to relational mapping library that loves SQL and the relational data model." -, "version": "0.0.4" -, "author": "Alan Gutierrez " -, "repository": - { "type": "git" - , "url": "http://github.com/bigeasy/relatable.git" +{ + "name": "relatable", + "description": "A lightweight JSON to relational mapping library that loves SQL and the relational data model.", + "version": "0.0.4", + "author": "Alan Gutierrez ", + "repository": + { + "type": "git", + "url": "http://github.com/bigeasy/relatable.git" + }, + "licenses": + [{ + "type": "MIT", + "url": "http://github.com/bigeasy/stencil/raw/master/LICENSE" + }], + "main": "./relatable.js", + "url": "http://bigeasy.github.com/relatable", + "keywords": + [ + "orm", "json", "sql", "rdbms", "postgresql", "mysql", "database" + ], + "dependencies": + { + "cadence": "0.0.23" + }, + "devDependencies": + { + "mysql": "~0", + "pg": ">=0", + "proof": "0.0.32" + }, + "scripts": + { + "test": "proof platform win32 && proof test */*/*.t.js || t/test" } -, "licenses": [ - { "type": "MIT" - , "url": "http://github.com/bigeasy/stencil/raw/master/LICENSE" - }] -, "main": "./relatable.js" -, "url" : "http://bigeasy.github.com/relatable" -, "keywords" : ["orm", "json", "sql", "rdbms", "postgresql", "mysql", "database"] -, "dependencies": - { "cadence": "0.0.23" - } -, "devDependencies": - { "mysql": "~0" - , "pg": ">=0" - , "proof": "0.0.32" - } -, "scripts" : { "test": "proof platform win32 && proof test */*/*.t.js || t/test" } }