{
	"name": "evaluator.js",
	"version": "3.2.4",
	"description": "Evaluates mathematical expressions",
	"source": "src/index.ts",
	"types": "dist/index.d.ts",
	"main": "dist/evaluator.js",
	"umd:main": "dist/evaluator.umd.js",
	"module": "dist/evaluator.m.js",
	"files": [
		"src",
		"dist"
	],
	"scripts": {
		"test": "microbundle --no-compress && mocha",
		"lint": "eslint src --ext .ts",
		"build": "microbundle",
		"dev": "microbundle watch"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/alecrios/evaluator.js.git"
	},
	"keywords": [
		"javascript",
		"parse",
		"convert",
		"infix",
		"postfix",
		"notation",
		"shunting-yard"
	],
	"author": "Alec Rios",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/alecrios/evaluator.js/issues"
	},
	"homepage": "https://github.com/alecrios/evaluator.js",
	"devDependencies": {
		"@typescript-eslint/eslint-plugin": "^2.3.3",
		"@typescript-eslint/parser": "^2.3.3",
		"chai": "^4.1.2",
		"eslint": "^5.0.1",
		"eslint-config-airbnb-base": "^13.2.0",
		"eslint-plugin-import": "^2.18.2",
		"microbundle": "^0.11.0",
		"mocha": "^4.0.1",
		"rewire": "^4.0.1",
		"typescript": "^3.6.3"
	}
}
