gltf-pipeline
Version:
Content pipeline tools for optimizing glTF assets.
80 lines (79 loc) • 2.11 kB
JSON
{
"name": "gltf-pipeline",
"version": "4.3.0",
"description": "Content pipeline tools for optimizing glTF assets.",
"license": "Apache-2.0",
"contributors": [
{
"name": "Richard Lee, Cesium GS, Inc., and Contributors",
"url": "https://github.com/CesiumGS/gltf-pipeline/graphs/contributors"
}
],
"keywords": [
"glTF",
"WebGL"
],
"homepage": "https://github.com/CesiumGS/gltf-pipeline",
"repository": {
"type": "git",
"url": "git@github.com:CesiumGS/gltf-pipeline.git"
},
"bugs": {
"url": "https://github.com/CesiumGS/gltf-pipeline/issues"
},
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"cesium": "^1.131.0",
"draco3d": "^1.5.7",
"fs-extra": "^11.3.0",
"mime": "^3.0.0",
"object-hash": "^3.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"cloc": "^2.11.0",
"dependency-tree": "^10.0.9",
"eslint": "^8.57.1",
"eslint-config-cesium": "^10.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^16.6.2",
"gulp": "^5.0.1",
"husky": "^8.0.3",
"jasmine": "^5.8.0",
"jasmine-spec-reporter": "^7.0.0",
"jsdoc": "^4.0.4",
"lint-staged": "^15.5.2",
"nyc": "^15.1.0",
"prettier": "3.1.1"
},
"lint-staged": {
"*.(js|ts)": [
"eslint --cache --quiet --fix",
"prettier --write"
],
"*.!(js|ts)": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"eslint-fix": "eslint \"./**/*.js\" --fix",
"eslint": "eslint \"./**/*.js\" --cache --quiet",
"eslint-watch": "gulp eslint-watch",
"test": "gulp test",
"test-watch": "gulp test-watch",
"coverage": "gulp coverage",
"cloc": "gulp cloc",
"prettier": "prettier --write \"**/*\"",
"prettier-check": "prettier --check \"**/*\"",
"build-cesium": "gulp build-cesium",
"generate-third-party": "gulp generate-third-party"
},
"bin": {
"gltf-pipeline": "./bin/gltf-pipeline.js"
}
}