mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-23 08:34:14 -05:00
42 lines
967 B
JSON
42 lines
967 B
JSON
{
|
|
"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
|
|
}
|
|
}
|