{
	"name": "captcha-generator-alphanumeric",
	"version": "1.10.2",
	"description": "An NPM package to generate alphanumeric captcha images",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"scripts": {
		"clean": "rm -rf coverage .nyc_output dist/**/*",
		"compile": "tsc",
		"test": "nyc mocha",
		"coverage": "nyc report -r lcovonly",
		"build": "npm run clean && npm run compile && npm test && npm run coverage"
	},
	"nyc": {
		"all": true
	},
	"author": "Varun Patil <radialapps@gmail.com>",
	"license": "GPL-3.0",
	"dependencies": {
		"canvas": "^2.11.2"
	},
	"devDependencies": {
		"@istanbuljs/nyc-config-typescript": "^1.0.2",
		"@types/mocha": "^10.0.6",
		"@types/node": "^20.10.2",
		"mocha": "^10.2.0",
		"mocha-lcov-reporter": "^1.3.0",
		"nyc": "^15.1.0",
		"source-map-support": "^0.5.21",
		"ts-node": "^10.9.1",
		"typescript": "^5.3.2"
	},
	"engines": {
		"node": ">=12.0.0"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/pulsejet/captcha-generator-alphanumeric.git"
	},
	"homepage": "https://github.com/pulsejet/captcha-generator-alphanumeric",
	"keywords": [
		"captcha",
		"generator",
		"bot",
		"authentication",
		"discord",
		"slack"
	],
	"directories": {
		"example": "./examples",
		"test": "./test"
	},
	"prettier": {
		"arrowParens": "avoid",
		"printWidth": 80,
		"trailingComma": "all",
		"useTabs": true
	}
}