fbx-parser
Version:
This parser will parse FBX text files and convert them into a JavaScript-Object structure.
48 lines (47 loc) • 1.18 kB
JSON
{
"name": "fbx-parser",
"version": "2.1.3",
"description": "This parser will parse FBX text files and convert them into a JavaScript-Object structure.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"build": "npm test && tsc",
"prepare": "npm run build && npm test"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"FBX",
"picode"
],
"repository": {
"type": "git",
"url": "git+https://github.com/picode7/fbx-parser.git"
},
"author": "picode7",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.19",
"@types/pako": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@picode/binary-reader": "^0.0.4",
"pako": "^2.0.3"
}
}