obj2gltf/package.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2015-10-16 17:32:23 -04:00
{
2016-06-09 13:33:08 -04:00
"name": "obj2gltf",
"version": "0.1.7",
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",
2017-03-13 15:28:51 -04:00
"url": "https://github.com/AnalyticalGraphicsInc/obj2gltf/graphs/contributors"
2016-07-08 18:10:18 -04:00
}
],
2016-06-09 13:33:08 -04:00
"keywords": [
"obj",
"gltf"
],
2017-03-13 15:28:51 -04:00
"homepage": "https://github.com/AnalyticalGraphicsInc/obj2gltf",
2016-06-09 13:33:08 -04:00
"repository": {
"type": "git",
2017-03-13 15:28:51 -04:00
"url": "git@github.com:AnalyticalGraphicsInc/obj2gltf.git"
2016-06-09 13:33:08 -04:00
},
"bugs": {
2017-03-13 15:28:51 -04:00
"url": "https://github.com/AnalyticalGraphicsInc/obj2gltf/issues"
2016-06-09 13:33:08 -04:00
},
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": {
2017-03-13 15:28:51 -04:00
"bluebird": "^3.4.7",
"cesium": "^1.31.0",
"event-stream": "^3.3.4",
"fs-extra": "^2.0.0",
"gltf-pipeline": "^0.1.0-alpha11",
"pngjs": "^3.0.1",
2017-03-13 15:28:51 -04:00
"yargs": "^7.0.1"
2016-06-09 13:33:08 -04:00
},
"devDependencies": {
2017-03-13 15:28:51 -04:00
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.4",
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"jasmine-spec-reporter": "^3.2.0",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"open": "^0.0.5",
2017-03-15 13:19:47 -04:00
"requirejs": "^2.3.3"
2016-07-08 18:10:18 -04:00
},
"scripts": {
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
2016-07-08 18:10:18 -04:00
"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"
2016-07-08 18:10:18 -04:00
},
"bin": {
"obj2gltf": "./bin/obj2gltf.js"
2016-06-09 13:33:08 -04:00
}
2015-10-16 17:32:23 -04:00
}