mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2025-01-30 19:42:59 -05:00
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "obj2gltf",
|
|
"version": "1.1.1",
|
|
"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": {
|
|
"bluebird": "^3.4.7",
|
|
"cesium": "^1.31.0",
|
|
"event-stream": "^3.3.4",
|
|
"fs-extra": "^2.0.0",
|
|
"gltf-pipeline": "^0.1.0-alpha11",
|
|
"mime": "^1.3.4",
|
|
"pngjs": "^3.0.1",
|
|
"uuid": "^3.0.1",
|
|
"yargs": "^7.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "^2.12.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-jshint": "^2.0.4",
|
|
"istanbul": "^0.4.5",
|
|
"jasmine": "^2.5.3",
|
|
"jasmine-spec-reporter": "^3.2.0",
|
|
"jsdoc": "^3.4.3",
|
|
"jshint": "^2.9.4",
|
|
"jshint-stylish": "^2.2.1",
|
|
"open": "^0.0.5",
|
|
"requirejs": "^2.3.3"
|
|
},
|
|
"scripts": {
|
|
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
|
|
"jsHint": "gulp jsHint",
|
|
"jsHint-watch": "gulp jsHint-watch",
|
|
"test": "gulp test",
|
|
"test-watch": "gulp test-watch",
|
|
"coverage": "gulp coverage",
|
|
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
|
|
},
|
|
"bin": {
|
|
"obj2gltf": "./bin/obj2gltf.js"
|
|
}
|
|
}
|