{
	"name": "fireparse",
	"version": "2.0.1",
	"license": "MIT",
	"module": "index.js",
	"author": "Appnest",
	"description": "A lightweight markdown to html converter",
	"bugs": {
		"url": "https://github.com/andreasbm/fireparse/issues"
	},
	"homepage": "https://github.com/andreasbm/fireparse#readme",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/andreasbm/fireparse.git"
	},
	"keywords": [
		"markdown",
		"parser",
		"text",
		"text parser",
		"html",
		"markdown to html",
		"showdown",
		"simple",
		"slack"
	],
	"main": "index.js",
	"types": "index.d.ts",
	"scripts": {
		"ncu": "ncu -u -a && npm update && npm install",
		"test": "karma start",
		"b:dev": "rollup -c --environment NODE_ENV:dev",
		"b:prod": "rollup -c --environment NODE_ENV:prod",
		"s:dev": "rollup -c --watch --environment NODE_ENV:dev",
		"s:prod": "rollup -c --watch --environment NODE_ENV:prod",
		"s": "npm run s:dev",
		"start": "npm run s",
		"b:lib": "node pre-build.js && tsc -p tsconfig.build.json",
		"git:add:commit:push": "git add . && git commit --no-edit --amend --no-verify && git push",
		"bump:patch": "npm version patch && npm run git:add:commit:push",
		"bump:minor": "npm version minor && npm run git:add:commit:push",
		"publish": "cd dist && npm publish --access=public && cd ..",
		"bump:major": "npm version major && npm run git:add:commit:push",
		"publish:patch": "npm run test && npm run bump:patch && npm run b:lib && npm run publish",
		"publish:minor": "npm run test && npm run bump:minor && npm run b:lib && npm run publish",
		"publish:major": "npm run test && npm run bump:major && npm run b:lib && npm run publish"
	},
	"devDependencies": {
		"@appnest/web-config": "0.4.28"
	}
}
