{
	"name": "wikijs",
	"description": "Mediawiki interface for Node and Web",
	"author": "Richard van der Dys",
	"version": "6.4.1",
	"keywords": [
		"wiki",
		"wikipedia",
		"interface",
		"search",
		"page",
		"article",
		"node",
		"api",
		"mediawiki"
	],
	"license": "MIT",
	"engines": {
		"node": ">=0.10.4"
	},
	"funding": {
		"type": "individual",
		"url": "https://www.buymeacoffee.com/2tmRKi9"
	},
	"dependencies": {
		"cross-fetch": "^3.0.2",
		"hyntax": "^1.1.9",
		"infobox-parser": "3.6.2"
	},
	"devDependencies": {
		"@pollyjs/adapter-node-http": "^2.5.0",
		"@pollyjs/core": "^2.5.0",
		"@pollyjs/persister-fs": "^2.1.0",
		"coveralls": "^2.11.9",
		"eslint": "^4.19.1",
		"gh-pages": "^1.0.0",
		"istanbul": "^1.0.0-alpha.2",
		"jsdoc": "^3.3.0-beta3",
		"minami": "^1.1.0",
		"mocha": "^10.2.0",
		"nock": "^10.0.2",
		"prettier": "1.15.3",
		"should": "^9.0.0",
		"typescript": "^4.9.5"
	},
	"typings": "./index.d.ts",
	"scripts": {
		"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash fixup.sh",
		"test": "mocha",
		"cover": "babel-node ./node_modules/istanbul/lib/cli cover node_modules/.bin/_mocha",
		"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
		"lint": "eslint src",
		"publish-docs": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && gh-pages -d docs/wikijs/$PACKAGE_VERSION ",
		"coveralls": "cat ./coverage/lcov.info | coveralls"
	},
	"homepage": "https://github.com/dijs/wiki",
	"bugs": "https://github.com/dijs/wiki/issues",
	"repository": {
		"type": "git",
		"url": "git://github.com/dijs/wiki.git"
	},
	"publishConfig": {
		"access": "public"
	},
	"type": "module",
	"main": "dist/cjs/wiki.js",
	"module": "dist/mjs/wiki.js",
	"exports": {
		".": {
			"import": "./dist/mjs/wiki.js",
			"require": "./dist/cjs/wiki.js"
		}
	}
}
