{
	"name": "typed-binary-json",
	"version": "1.19.1",
	"description": "A TBJSON parser and serializer.",
	"homepage": "https://github.com/obsius/typed-binary-json",
	"author": "Jeff Seaman <mr.jeffrey.seaman@gmail.com> (https://www.ngc6822.com)",
	"license": "MIT",
	"main": "lib/index.js",
	"files": [
		"/lib"
	],
	"scripts": {
		"prepare": "rollup -c",
		"start": "nodemon --inspect dev.js --exec babel-node",
		"benchmarks": "babel-node benchmarks.js",
		"test": "babel-node test"
	},
	"devDependencies": {
		"@babel/core": "^7.19.0",
		"@babel/node": "^7.18.10",
		"@babel/plugin-proposal-class-properties": "^7.18.6",
		"@babel/preset-env": "^7.19.0",
		"nodemon": "^2.0.19",
		"rollup": "^2.79.0",
		"rollup-plugin-babel": "^4.4.0"
	},
	"babel": {
		"plugins": [
			"@babel/plugin-proposal-class-properties"
		],
		"presets": [
			[
				"@babel/preset-env",
				{
					"targets": {
						"node": "current"
					}
				}
			]
		]
	},
	"keywords": [
		"json",
		"binary",
		"typed",
		"parser",
		"serializer"
	]
}
