{
	"name": "emojis-utils",
	"version": "1.0.2",
	"description": "Utilities for emojis.",
	"main": "dist/emojis-utils.js",
	"types": "dist/emojis-utils.d.ts",
	"scripts": {
		"build": "webpack --env.production",
		"build-dev": "webpack --env.development",
		"start": "webpack --env.development --env.watch",
		"prettier": "prettier '**/*.js'",
		"format-check": "npm run prettier -- --check",
		"format": "npm run prettier -- --write",
		"prettier-other": "prettier '**/*.{json,md,yml,yaml}'",
		"format-check-other": "npm run prettier-other -- --check",
		"format-other": "npm run prettier-other -- --write",
		"eslint": "eslint '**/*.js'",
		"lint-check": "npm run eslint -- --quiet",
		"lint-all": "npm run eslint -- --fix",
		"lint": "npm run lint-all -- --quiet",
		"check": "run-s format-check-other lint-check",
		"fix": "run-s format-other lint",
		"test": "jest"
	},
	"repository": {
		"type": "git",
		"url": "git+https://gitlab.com/rafaelgssa/emojis-utils.git"
	},
	"keywords": [
		"emojis"
	],
	"author": "Rafael Gomes <rafael.gssa@pm.me> (https://gitlab.com/rafaelgssa)",
	"license": "MIT",
	"bugs": {
		"url": "https://gitlab.com/rafaelgssa/emojis-utils/-/issues"
	},
	"homepage": "https://gitlab.com/rafaelgssa/emojis-utils",
	"devDependencies": {
		"@types/jest": "^26.0.8",
		"@types/node": "^14.0.27",
		"@types/webpack": "^4.41.21",
		"copy-webpack-plugin": "^6.0.3",
		"eslint": "^7.6.0",
		"eslint-config-prettier": "^6.11.0",
		"eslint-plugin-prettier": "^3.1.4",
		"husky": "^4.2.5",
		"jest": "^26.2.2",
		"lint-staged": "^10.2.11",
		"node-fetch": "^2.6.0",
		"npm-run-all": "^4.1.5",
		"prettier": "^2.0.5",
		"webpack": "^4.44.1",
		"webpack-cli": "^3.3.12"
	},
	"files": [
		"dist/*"
	],
	"prettier": {
		"printWidth": 100,
		"useTabs": true,
		"singleQuote": true
	},
	"eslintConfig": {
		"parserOptions": {
			"sourceType": "module"
		},
		"env": {
			"browser": true,
			"es2020": true,
			"jest": true,
			"node": true
		},
		"extends": [
			"eslint:recommended",
			"plugin:prettier/recommended"
		],
		"rules": {
			"quotes": [
				"error",
				"single",
				{
					"avoidEscape": true,
					"allowTemplateLiterals": false
				}
			]
		},
		"ignorePatterns": [
			"dist/*"
		]
	},
	"husky": {
		"hooks": {
			"pre-commit": "lint-staged"
		}
	},
	"lint-staged": {
		"*.{json,md,yml,yaml}": "prettier --write",
		"*.js": "eslint --fix --quiet"
	}
}
