UNPKG

gltf-pipeline

Version:

Content pipeline tools for optimizing glTF assets.

77 lines (76 loc) 2.14 kB
{ "name": "gltf-pipeline", "version": "4.1.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.86.1", "draco3d": "^1.4.3", "fs-extra": "^11.0.0", "mime": "^3.0.0", "object-hash": "^3.0.0", "yargs": "^17.2.1" }, "devDependencies": { "cloc": "^2.8.0", "coveralls": "^3.1.1", "dependency-tree": "^9.0.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": "^4.0.0", "jasmine-spec-reporter": "^7.0.0", "jsdoc": "^4.0.0", "nyc": "^15.1.0", "open": "^8.3.0", "prettier": "2.8.4", "pretty-quick": "^3.1.1" }, "scripts": { "prepare": "husky install", "pre-commit": "eslint && pretty-quick --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", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", "cloc": "gulp cloc", "prettier": "prettier --write \"**/*\"", "prettier-check": "prettier --check \"**/*\"", "pretty-quick": "pretty-quick", "build-cesium": "gulp build-cesium", "generate-third-party": "gulp generate-third-party" }, "bin": { "gltf-pipeline": "./bin/gltf-pipeline.js" } }