mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-23 08:34:14 -05:00
74 lines
1.8 KiB
JSON
74 lines
1.8 KiB
JSON
{
|
|
"name": "obj2gltf",
|
|
"version": "3.1.1",
|
|
"description": "Convert OBJ model format to glTF",
|
|
"license": "Apache-2.0",
|
|
"contributors": [
|
|
{
|
|
"name": "Cesium GS, Inc. and Contributors",
|
|
"url": "https://github.com/CesiumGS/obj2gltf/graphs/contributors"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"obj",
|
|
"gltf"
|
|
],
|
|
"homepage": "https://github.com/CesiumGS/obj2gltf",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:CesiumGS/obj2gltf.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/CesiumGS/obj2gltf/issues"
|
|
},
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "^3.7.2",
|
|
"cesium": "^1.83.0",
|
|
"fs-extra": "^10.0.0",
|
|
"jpeg-js": "^0.4.3",
|
|
"mime": "^2.5.2",
|
|
"pngjs": "^6.0.0",
|
|
"yargs": "^17.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"cloc": "^2.8.0",
|
|
"coveralls": "^3.1.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-cesium": "^8.0.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"gulp": "^4.0.2",
|
|
"husky": "^4.3.8",
|
|
"jasmine": "^3.8.0",
|
|
"jasmine-spec-reporter": "^7.0.0",
|
|
"jsdoc": "^3.6.7",
|
|
"nyc": "^15.1.0",
|
|
"open": "^8.2.1",
|
|
"prettier": "2.3.2",
|
|
"pretty-quick": "^3.1.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "eslint && pretty-quick --staged"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
|
|
"eslint": "eslint \"./**/*.js\" --cache --quiet",
|
|
"test": "gulp test",
|
|
"test-watch": "gulp test-watch",
|
|
"coverage": "gulp coverage",
|
|
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
|
|
"cloc": "gulp cloc",
|
|
"prettier": "prettier --write \"**/*\"",
|
|
"prettier-check": "prettier --check \"**/*\"",
|
|
"pretty-quick": "pretty-quick"
|
|
},
|
|
"bin": {
|
|
"obj2gltf": "./bin/obj2gltf.js"
|
|
}
|
|
}
|