From 1a0901b842d7ec8dd9c964ee29a72054e8b394a6 Mon Sep 17 00:00:00 2001 From: Sean Lilley Date: Mon, 19 Oct 2015 12:11:13 -0400 Subject: [PATCH] Updated package.json --- package.json | 47 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index c800d98..f590d78 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,41 @@ { - "name": "obj2gltf", - "version": "1.0.0", - "dependencies": { - "async": "^1.4.2", - "fs-extra": "^0.24.0", - "minimist": "^1.2.0", - "path": "^0.12.7" - } + "name": "obj2gltf", + "version": "0.0.1", + "description": "Convert OBJ model format to glTF", + "license": "Apache-2.0", + "author": { + "name": "Sean Lilley", + "email": "slilley@agi.com" + }, + "keywords": [ + "obj", + "gltf" + ], + "homepage": "https://github.com/AnalyticalGraphicsInc/OBJ2GLTF", + "repository": { + "type": "git", + "url": "git@github.com:AnalyticalGraphicsInc/OBJ2GLTF.git" + }, + "bugs": { + "url": "https://github.com/AnalyticalGraphicsInc/OBJ2GLTF/issues" + }, + "scripts": { + "jshint": "./node_modules/jshint/bin/jshint bin/*.js lib/*.js" + }, + "directories": { + "bin": "./bin", + "lib": "./lib" + }, + "dependencies": { + "async": "^1.4.2", + "fs-extra": "^0.24.0", + "minimist": "^1.2.0", + "path": "^0.12.7" + }, + "devDependencies": { + "jshint": "^2.6.0" + }, + "jshintConfig": { + "node": true + } }