Updated package.json

This commit is contained in:
Sean Lilley 2015-10-19 12:11:13 -04:00
parent 82698ba8e4
commit 1a0901b842
1 changed files with 39 additions and 8 deletions

View File

@ -1,10 +1,41 @@
{ {
"name": "obj2gltf", "name": "obj2gltf",
"version": "1.0.0", "version": "0.0.1",
"dependencies": { "description": "Convert OBJ model format to glTF",
"async": "^1.4.2", "license": "Apache-2.0",
"fs-extra": "^0.24.0", "author": {
"minimist": "^1.2.0", "name": "Sean Lilley",
"path": "^0.12.7" "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
}
} }