2022-11-18 22:05:06 +03:00
|
|
|
{
|
|
|
|
"name": "prettier-plugin-jinja-template",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Prettier plugin for formatting jinja templates.",
|
|
|
|
"author": "David Odenwald",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/davidodenwald/prettier-plugin-jinja-template.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/davidodenwald/prettier-plugin-jinja-template/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/davidodenwald/prettier-plugin-jinja-template#readme",
|
|
|
|
"keywords": [
|
|
|
|
"prettier",
|
|
|
|
"plugin",
|
|
|
|
"template",
|
|
|
|
"html",
|
|
|
|
"jinja",
|
|
|
|
"jinja2",
|
|
|
|
"flask"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"watch": "npm run build -- --watch",
|
|
|
|
"test": "jest --verbose",
|
|
|
|
"test:watch": "jest --watch --verbose",
|
2022-11-18 22:18:41 +03:00
|
|
|
"publish:release": "npm run test && npm run build && npm publish",
|
2022-11-18 22:05:06 +03:00
|
|
|
"publish:beta": "npm run test && npm run build && npm publish --tag beta"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
|
|
"@types/jest": "^29.2.2",
|
|
|
|
"jest": "^29.3.1",
|
|
|
|
"prettier": "^2.7.1",
|
|
|
|
"ts-jest": "^29.0.3",
|
|
|
|
"typescript": "^4.8.4"
|
|
|
|
}
|
|
|
|
}
|