obj2gltf/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2015-10-16 17:32:23 -04:00
{
2016-06-09 13:33:08 -04:00
"name": "obj2gltf",
2016-07-21 17:22:12 -04:00
"version": "0.1.1",
2016-06-09 13:33:08 -04:00
"description": "Convert OBJ model format to glTF",
"license": "Apache-2.0",
2016-07-08 18:10:18 -04:00
"contributors": [
{
"name": "Analytical Graphics, Inc., and Contributors",
"url": "https://github.com/AnalyticalGraphicsInc/OBJ2GLTF/graphs/contributors"
}
],
2016-06-09 13:33:08 -04:00
"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"
},
2016-07-08 18:10:18 -04:00
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
2016-06-09 13:33:08 -04:00
"dependencies": {
2016-07-08 18:10:18 -04:00
"async": "2.0.0-rc.6",
"byline": "4.2.1",
"cesium": "1.23.0",
"fs-extra": "0.30.0",
2016-07-21 17:22:12 -04:00
"gltf-pipeline": "0.1.0-alpha2",
2016-07-08 18:10:18 -04:00
"yargs": "4.7.1"
2016-06-09 13:33:08 -04:00
},
"devDependencies": {
2016-07-08 18:10:18 -04:00
"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"
2016-06-09 13:33:08 -04:00
}
2015-10-16 17:32:23 -04:00
}