obj2gltf/package.json

63 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",
2018-12-05 09:26:58 -05:00
"version": "3.0.0",
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": [
{
2017-06-14 08:22:41 -04:00
"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": {
2019-02-05 22:08:14 -05:00
"bluebird": "^3.5.3",
"cesium": "^1.54.0",
"fs-extra": "^7.0.1",
2018-10-11 16:33:49 -04:00
"jpeg-js": "^0.3.4",
2019-02-05 22:08:14 -05:00
"mime": "^2.4.0",
2018-10-11 16:33:49 -04:00
"pngjs": "^3.3.3",
"yargs": "^13.1.0"
2016-06-09 13:33:08 -04:00
},
"devDependencies": {
2019-02-05 22:08:14 -05:00
"cloc": "^2.4.0",
2018-10-11 16:33:49 -04:00
"coveralls": "^3.0.2",
2019-02-05 22:08:14 -05:00
"eslint": "^5.13.0",
"eslint-config-cesium": "^6.0.1",
"gulp": "^4.0.0",
2019-02-05 22:08:14 -05:00
"jasmine": "^3.3.1",
2018-10-11 16:33:49 -04:00
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.5.5",
2019-02-05 22:08:14 -05:00
"nyc": "^13.2.0",
2017-03-13 15:28:51 -04:00
"open": "^0.0.5",
2018-10-11 16:33:49 -04:00
"requirejs": "^2.3.6"
2016-07-08 18:10:18 -04:00
},
"scripts": {
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"eslint": "eslint \"./**/*.js\" --cache --quiet",
2016-07-08 18:10:18 -04:00
"test": "gulp test",
"test-watch": "gulp test-watch",
"coverage": "gulp coverage",
2018-01-29 16:50:56 -05:00
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"cloc": "gulp cloc"
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
}