{
	"name": "encrypt-string",
	"version": "1.0.0",
	"description": "Encrypt and decrypt a string using another string (or an `Uint8Array`) as password",
	"license": "MIT",
	"repository": "papb/encrypt-string",
	"author": {
		"name": "Pedro Augusto de Paula Barbosa",
		"email": "papb1996@gmail.com"
	},
	"engines": {
		"node": ">=10"
	},
	"scripts": {
		"build": "del-cli dist && tsc",
		"prepack": "npm run build",
		"lint": "tsc --noEmit && xo",
		"ava": "npm run build && ava",
		"ava-cov": "npm run build && nyc --reporter=text --reporter=text-summary --reporter=html ava",
		"test": "npm run build && npm run lint && npm run ava",
		"release": "npm run build && np --no-yarn --no-2fa --no-cleanup"
	},
	"main": "dist/source",
	"types": "dist/source",
	"files": [
		"dist/source",
		"!*.map"
	],
	"keywords": [
		"encrypt",
		"decrypt",
		"crypto",
		"secure",
		"string",
		"typescript"
	],
	"dependencies": {
		"encrypt-uint8array": "^1.0.0"
	},
	"devDependencies": {
		"@ava/typescript": "^1.1.1",
		"@types/node": "^10.17.46",
		"ava": "^3.13.0",
		"crypto-random-string": "^3.3.0",
		"del-cli": "^3.0.1",
		"eslint-config-xo-typescript": "^0.36.0",
		"np": "^6.5.0",
		"nyc": "^15.1.0",
		"pkg-dir": "^4.2.0",
		"source-map-support": "^0.5.19",
		"type-fest": "^0.19.0",
		"typescript": "^4.1.2",
		"xo": "^0.35.0"
	},
	"ava": {
		"verbose": true,
		"require": [
			"source-map-support/register"
		],
		"typescript": {
			"rewritePaths": {
				"source/": "dist/source/",
				"test/": "dist/test/"
			}
		},
		"timeout": "1m"
	}
}
