UNPKG

gltf-loader-ts

Version:

Engine-agnostic glTF 2.0 loader in TypeScript

66 lines (65 loc) 2.54 kB
{ "name": "gltf-loader-ts", "version": "0.3.1", "license": "MIT", "description": "Engine-agnostic glTF 2.0 loader in TypeScript", "author": "", "homepage": "https://github.com/bwasty/gltf-loader-ts", "repository": { "type": "git", "url": "https://github.com/bwasty/gltf-loader-ts.git" }, "main": "./lib/gltf-loader.js", "types": "./lib/gltf-loader.d.ts", "devDependencies": { "@types/chai": "~4.1.3", "@types/chai-spies": "~0.0.1", "@types/mocha": "~5.2.1", "chai": "~4.1.2", "chai-spies": "~1.0.0", "codecov": "~3.0.2", "cross-env": "~5.1.6", "gh-pages": "~1.2.0", "gltf-typescript-generator": "~0.0.3", "mocha": "~5.2.0", "mocha-junit-reporter": "~1.17.0", "mocha-multi-reporters": "~1.1.7", "nyc": "~12.0.2", "simple-dropzone": "~0.5.3", "ts-loader": "~4.4.1", "ts-node": "~5.0.1", "tslint": "~5.10.0", "typedoc": "~0.11.1", "typescript": "~2.9.1", "webpack": "~4.12.0", "webpack-bundle-analyzer": "~2.13.1", "webpack-cli": "~3.0.3", "xhr2": "~0.1.4" }, "dependencies": {}, "peerDependencies": {}, "scripts": { "build": "webpack --mode development", "build-watch": "webpack --watch --mode development", "build-dist": "webpack --config webpack.config.dist.js --mode production", "build-lib": "webpack --config webpack.config.lib.js --mode production", "check": "tslint --project tsconfig.json --force --format stylish --config tslint.json", "analyze": "cross-env ANALYZE=true npm run build-lib", "test": "nyc mocha", "test-watch": "mocha --watch", "codecov": "codecov", "doc": "typedoc --hideGenerator --readme README.md --target ES6 --module commonjs --includeDeclarations --excludeExternals --mode file --out dist/doc/ source/", "generate-interface": "gltf-typescript-generator source/gltf.ts https://raw.githubusercontent.com/KhronosGroup/glTF/master/specification/2.0/schema/glTF.schema.json", "upload-docs": "gh-pages -d dist/doc", "prepack": "rm -rf dist && rm -rf lib && npm install && npm run build-dist && npm run build-lib", "postversion": "git push && git push --tags", "release": "npm publish && npm run doc && npm run upload-docs" }, "keywords": [ "glTF", "gltf", "WebGL", "webgl", "3d" ] }