prettier-plugin-askama-temp.../package.json

44 lines
1 KiB
JSON
Raw Normal View History

2022-11-18 22:05:06 +03:00
{
"name": "prettier-plugin-jinja-template",
2022-12-06 20:25:13 +03:00
"version": "0.0.4",
2022-11-18 22:05:06 +03:00
"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-12-01 20:01:39 +03:00
"publish:release": "npm run test && npm run build && npm publish"
2022-11-18 22:05:06 +03:00
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
2022-12-11 22:06:05 +03:00
"@types/jest": "^29.2.4",
2022-11-18 22:05:06 +03:00
"jest": "^29.3.1",
2022-12-11 22:06:05 +03:00
"prettier": "^2.8.1",
2022-11-18 22:05:06 +03:00
"ts-jest": "^29.0.3",
2022-12-11 22:06:05 +03:00
"typescript": "^4.9.4"
2022-11-18 23:24:38 +03:00
},
"peerDependencies": {
"prettier": "^2.0.0"
2022-11-21 16:37:35 +03:00
}
2022-11-18 22:05:06 +03:00
}