{
	"version": "1.0.0",
	"name": "pragmatic-view",
	"description": "JSX and TSX templating engine for node applications inspired by React and .NET",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"engines": {
		"node": ">=8.0.0"
	},
	"scripts": {
		"build": "tsc",
		"prepare": "npm run build",
		"prepublishOnly": "npm run test && npm run lint",
		"test": "mocha -r ts-node/register **/*.spec.{ts,tsx}",
		"coveredtest": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
		"lint": "eslint src/**/*",
		"docdev": "docsify serve ./public"
	},
	"author": {
		"name": "Lukas \"Deathrage\" Prochazka",
		"email": "lukas@lukasprochazka.net",
		"url": "http://www.lukasprochazka.net"
	},
	"repository": {
		"type": "git",
		"url": "https://gitlab.com/Deathrage/pragmaticview"
	},
	"files": [
		"dist"
	],
	"license": "MIT",
	"keywords": [
		"jsx",
		"tsx",
		"javascript",
		"typescript",
		"react",
		"pragma",
		"node",
		"serverside",
		"server",
		"template",
		"engine",
		"rendering",
		"render",
		"framework",
		"pragmatic",
		"pragmaticview",
		"view"
	],
	"devDependencies": {
		"@types/babel__core": "^7.1.0",
		"@types/chai": "^4.1.7",
		"@types/clone-deep": "^4.0.1",
		"@types/js-beautify": "^1.8.0",
		"@types/mocha": "^5.2.6",
		"@types/node": "^12.0.12",
		"@types/sinon": "^7.0.13",
		"@types/sinon-chai": "^3.2.2",
		"@typescript-eslint/eslint-plugin": "^1.3.0",
		"chai": "^4.2.0",
		"clear-module": "^4.0.0",
		"coveralls": "^3.0.3",
		"eslint": "^5.14.1",
		"eslint-config-standard": "^12.0.0",
		"eslint-plugin-import": "^2.16.0",
		"eslint-plugin-jest": "^22.3.0",
		"eslint-plugin-node": "^8.0.1",
		"eslint-plugin-prettier": "^3.1.0",
		"eslint-plugin-promise": "^4.0.1",
		"eslint-plugin-react": "^7.12.4",
		"eslint-plugin-standard": "^4.0.0",
		"mocha": "^6.0.2",
		"nyc": "^13.3.0",
		"prettier": "1.18.2",
		"prettier-eslint": "^9.0.0",
		"sinon": "^7.3.2",
		"sinon-chai": "^3.3.0",
		"ts-node": "^8.0.3",
		"typescript": "^3.4.1"
	},
	"dependencies": {
		"@babel/core": "^7.4.0",
		"@babel/plugin-proposal-class-properties": "^7.5.0",
		"@babel/plugin-proposal-decorators": "^7.4.4",
		"@babel/plugin-transform-modules-commonjs": "^7.4.0",
		"@babel/plugin-transform-react-jsx": "^7.3.0",
		"@babel/plugin-transform-typescript": "^7.4.0",
		"array-flatten": "^2.1.2",
		"cache-with-resolver": "^1.0.0",
		"clone-deep": "^4.0.1",
		"js-beautify": "^1.8.9",
		"pirates": "^4.0.1",
		"to-style": "^1.3.3"
	},
	"nyc": {
		"extension": [
			".ts",
			".tsx"
		],
		"include": [
			"src/**/*.ts"
		],
		"exclude": [
			"**/*.d.ts",
			"**/*.spec.ts"
		],
		"reporter": [
			"text-lcov"
		],
		"all": true
	}
}
