{
	"name": "bundlephobia",
	"description": "",
	"version": "0.1.0",
	"main": "dist/index.js",
	"module": "dist/index.es.js",
	"browser": "dist/index.umd.js",
	"unpkg": "dist/index.umd.js",
	"types": "dist/index.d.ts",
	"author": "QuantumlyTangled <yo@quantumlytangled.com> (https://quantumlytangled.com)",
	"license": "MIT",
	"scripts": {
		"lint": "eslint src --ext ts --fix",
		"update": "yarn upgrade-interactive --latest",
		"build": "rollup -c rollup.config.ts",
		"prepublishOnly": "yarn build",
		"test": "jest",
		"test:coverage": "jest --coverage",
		"sversion": "yarn standard-version"
	},
	"dependencies": {
		"node-fetch": "^2.6.0"
	},
	"devDependencies": {
		"@commitlint/cli": "^9.1.1",
		"@commitlint/config-conventional": "^9.1.1",
		"@quantumly/eslint-config": "^1.1.0",
		"@rollup/plugin-commonjs": "^14.0.0",
		"@rollup/plugin-json": "^4.1.0",
		"@rollup/plugin-node-resolve": "^8.4.0",
		"@types/jest": "^26.0.7",
		"@types/module-alias": "^2.0.0",
		"@types/node": "^14.0.26",
		"@types/node-fetch": "^2.5.7",
		"@typescript-eslint/eslint-plugin": "^3.7.0",
		"@typescript-eslint/parser": "^3.7.0",
		"cz-conventional-changelog": "^3.2.0",
		"eslint": "^7.6.0",
		"husky": "^4.2.5",
		"jest": "^26.1.0",
		"jest-circus": "^26.1.0",
		"lint-staged": "^10.2.11",
		"rollup": "^2.23.1",
		"rollup-plugin-cleaner": "^1.0.0",
		"rollup-plugin-node-polyfills": "^0.2.1",
		"rollup-plugin-terser": "^7.0.0",
		"rollup-plugin-typescript2": "^0.27.2",
		"standard-version": "^8.0.2",
		"ts-jest": "^26.1.3",
		"ts-node": "^8.10.2",
		"typedoc": "^0.18.0",
		"typescript": "^3.9.7"
	},
	"files": [
		"dist",
		"!dist/tsconfig.tsbuildinfo"
	],
	"engines": {
		"node": ">=14",
		"npm": ">=6"
	},
	"husky": {
		"hooks": {
			"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
			"pre-commit": "yarn lint-staged"
		}
	},
	"commitlint": {
		"extends": [
			"@commitlint/config-conventional"
		]
	},
	"lint-staged": {
		"*.ts": [
			"eslint --fix --ext ts"
		]
	},
	"config": {
		"commitizen": {
			"path": "./node_modules/cz-conventional-changelog"
		}
	},
	"publishConfig": {
		"access": "public"
	}
}
