{
	"name": "eval5",
	"version": "1.4.8",
	"description": "A JavaScript interpreter written in JavaScript",
	"main": "./dist/cjs/index.js",
	"module": "./dist/esm/index.js",
	"types": "./lib/index.d.ts",
	"scripts": {
		"start": "tsc -w",
		"build": "run-s clear build:* bundle:dev bundle:version bundle:prod bundle:banner",
		"build:lib": "tsc",
		"build:cjs": "tsc --module commonjs --target ES5 --outDir dist/cjs --declaration false",
		"build:esm": "tsc --module esnext --target ES6 --outDir dist/esm --declaration false",
		"clear": "rimraf lib dist umd",
		"bundle:dev": "rollup -c",
		"bundle:prod": "rollup -c rollup.config.min.mjs",
		"bundle:banner": "node scripts/banner.js",
		"bundle:version": "node scripts/version.js",
		"prepublishOnly": "run-s test build",
		"test": "jest"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/bplok20010/eval5.git"
	},
	"keywords": [
		"interpreter",
		"js-interpreter",
		"eval",
		"Function",
		"vm",
		"eval5"
	],
	"files": [
		"umd",
		"lib",
		"dist",
		"*.md"
	],
	"author": "nobo.zhou@foxmail.com",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/bplok20010/eval5/issues"
	},
	"homepage": "https://github.com/bplok20010/eval5#readme",
	"devDependencies": {
		"@babel/cli": "^7.8.4",
		"@rollup/plugin-commonjs": "^26.0.1",
		"@rollup/plugin-node-resolve": "^15.2.3",
		"@rollup/plugin-typescript": "^11.1.6",
		"rollup-plugin-terser": "^7.0.2",
		"@types/fs-extra": "^8.1.0",
		"@types/jest": "^24.0.25",
		"babel-plugin-search-and-replace": "^1.0.1",
		"babel-preset-packez": "^1.0.0",
		"fs-extra": "^8.1.0",
		"jest": "^24.9.0",
		"npm-run-all": "^4.1.5",
		"rollup": "^4.20.0",
		"rimraf": "^3.0.0"
	},
	"dependencies": {
		"@babel/runtime": "^7.8.4",
		"@types/acorn": "^4.0.5",
		"@types/estree": "0.0.41",
		"acorn": "^7.1.0"
	},
	"browserslist": [
		">=0.25%",
		"not dead",
		"not op_mini all",
		"not Android 4.4.3-4.4.4",
		"not ios_saf < 10",
		"not Chrome < 50",
		"firefox ESR"
	]
}
