mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-23 08:34:14 -05:00
9a07a65cd0
* Add simple build.yml for GitHub Actions * Delete travis.yml * Remove coveralls, we didn't really use it * No need to run coverage in CI
69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "obj2gltf",
|
|
"version": "3.1.6",
|
|
"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": ">=14.0.0"
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "^3.7.2",
|
|
"cesium": "^1.86.1",
|
|
"fs-extra": "^11.0.0",
|
|
"jpeg-js": "^0.4.3",
|
|
"mime": "^3.0.0",
|
|
"pngjs": "^7.0.0",
|
|
"yargs": "^17.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"cloc": "^2.8.0",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-cesium": "^9.0.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"gulp": "^4.0.2",
|
|
"husky": "^8.0.3",
|
|
"jasmine": "^5.0.0",
|
|
"jasmine-spec-reporter": "^7.0.0",
|
|
"jsdoc": "^4.0.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "2.8.8",
|
|
"pretty-quick": "^3.1.1"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"pre-commit": "eslint && pretty-quick --staged",
|
|
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
|
|
"eslint": "eslint \"./**/*.js\" --cache --quiet",
|
|
"test": "gulp test",
|
|
"test-watch": "gulp test-watch",
|
|
"coverage": "gulp coverage",
|
|
"cloc": "gulp cloc",
|
|
"prettier": "prettier --write \"**/*\"",
|
|
"prettier-check": "prettier --check \"**/*\"",
|
|
"pretty-quick": "pretty-quick",
|
|
"generate-third-party": "gulp generate-third-party"
|
|
},
|
|
"bin": {
|
|
"obj2gltf": "./bin/obj2gltf.js"
|
|
}
|
|
} |