mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-27 10:30:16 -05:00
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "obj2gltf",
|
|
"version": "0.1.2",
|
|
"description": "Convert OBJ model format to glTF",
|
|
"license": "Apache-2.0",
|
|
"contributors": [
|
|
{
|
|
"name": "Analytical Graphics, Inc., and Contributors",
|
|
"url": "https://github.com/AnalyticalGraphicsInc/OBJ2GLTF/graphs/contributors"
|
|
}
|
|
],
|
|
"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"
|
|
},
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"async": "2.0.0-rc.6",
|
|
"bluebird": "^3.4.1",
|
|
"byline": "4.2.1",
|
|
"cesium": "1.23.0",
|
|
"fs-extra": "0.30.0",
|
|
"gltf-pipeline": "0.1.0-alpha3",
|
|
"yargs": "4.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"gulp": "3.9.1",
|
|
"gulp-jshint": "2.0.1",
|
|
"istanbul": "0.4.4",
|
|
"jasmine": "2.4.1",
|
|
"jasmine-spec-reporter": "2.5.0",
|
|
"jshint": "2.9.2",
|
|
"jshint-stylish": "2.2.0",
|
|
"open": "0.0.5",
|
|
"request": "2.72.0",
|
|
"requirejs": "2.2.0"
|
|
},
|
|
"scripts": {
|
|
"jsHint": "gulp jsHint",
|
|
"jsHint-watch": "gulp jsHint-watch",
|
|
"test": "gulp test",
|
|
"test-watch": "gulp test-watch",
|
|
"coverage": "gulp coverage",
|
|
"update-ts-definitions": "gulp update-ts-definitions"
|
|
},
|
|
"bin": {
|
|
"obj2gltf": "./bin/obj2gltf.js"
|
|
}
|
|
}
|