{
	"name": "jquery-tmpl-convert",
	"version": "1.0.1",
	"description": "Application is created to help in migration from deprecated jQuery template library. Application is able to converte jQuery template to handlebar templates. Application supports two working modes: command-line interface(CLI) and server preview for interactive template converting. If needed application can be extended to convert other template types.",
	"keywords": [
		"jQuery",
		"jQuery-tmpl",
		"jQuery template",
		"handlebars",
		"convert",
		"migrate",
		"template"
	],
	"main": "./src/ndex.js",
	"bin": {
		"jquery-tmpl-convert": "./src/app.js"
	},
	"homepage": "https://github.com/maklja/jquery-tmpl-convert#readme",
	"bugs": "https://github.com/maklja/jquery-tmpl-convert/issues",
	"repository": {
		"type": "git",
		"url": "https://github.com/maklja/jquery-tmpl-convert.git"
	},
	"engines": {
		"node": ">=6.10.2",
		"npm": ">=3.10.10"
	},
	"scripts": {
		"test": "node_modules/mocha/bin/mocha ./test/**/*.js",
		"test:dev": "mocha ./test/**/*.js --watch",
		"test:debug": "./node_modules/mocha/bin/mocha ./test/**/*.js --inspect-brk",
		"start": "node ./src/app.js",
		"start:debug": "nodemon --inspect ./src/app.js -- --server",
		"start:debug:no-server": "nodemon --inspect ./src/app.js --output ./results --converter hbs",
		"build": "node_modules\\.bin\\webpack -p --optimize-minimize --config src/public/webpack.config.js --env prod",
		"build-dev": "node_modules\\.bin\\webpack -d --config src/public/webpack.config.js --env dev",
		"dev-server": "node_modules\\.bin\\webpack-dev-server -d --config src/public/webpack.config.js --hot --inline --env dev",
		"lint:css": "node_modules\\.bin\\stylelint ./src/public/resources/**/*.css ./src/public/js/**/*.css"
	},
	"author": "Bojan Makljenovic",
	"contributors": [],
	"license": "MIT",
	"devDependencies": {
		"babel-cli": "^6.26.0",
		"babel-loader": "^7.1.4",
		"babel-preset-env": "^1.7.0",
		"babel-preset-es2015": "^6.24.1",
		"babel-preset-react": "^6.24.1",
		"chai": "^4.1.2",
		"clean-webpack-plugin": "^0.1.19",
		"css-loader": "^0.28.11",
		"eslint": "^4.19.1",
		"eslint-config-prettier": "^2.9.0",
		"eslint-loader": "^2.0.0",
		"eslint-plugin-chai-friendly": "^0.4.1",
		"eslint-plugin-prettier": "^2.6.0",
		"eslint-plugin-react": "^7.8.2",
		"extract-text-webpack-plugin": "^3.0.2",
		"jqtpl": "^2.0.16-rc1",
		"mocha": "^5.2.0",
		"nodemon": "^1.17.5",
		"postcss-syntax": "^0.10.0",
		"prettier": "^1.13.0",
		"prettier-stylelint": "^0.4.2",
		"react-hot-loader": "^3.1.3",
		"style-loader": "^0.20.3",
		"stylelint": "^9.2.1",
		"stylelint-config-prettier": "^3.2.0",
		"stylelint-config-standard": "^18.2.0",
		"stylelint-webpack-plugin": "^0.10.5",
		"webpack": "^3.12.0",
		"webpack-dev-server": "^2.11.2",
		"webpack-merge": "^4.1.2"
	},
	"dependencies": {
		"babel-polyfill": "^6.26.0",
		"cheerio": "^1.0.0-rc.2",
		"commander": "^2.15.1",
		"express": "^4.16.3",
		"glob": "^7.1.2",
		"jsep": "^0.3.4",
		"node-zip": "^1.1.1",
		"prismjs": "^1.14.0",
		"react": "^16.4.0",
		"react-dom": "^16.4.0",
		"react-modal": "^3.4.4",
		"uuid": "^3.2.1",
		"whatwg-fetch": "^2.0.4"
	}
}
