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

42 lines
1.1 KiB
JSON
Raw Normal View History

2022-11-18 22:05:06 +03:00
{
2023-08-19 18:27:59 +03:00
"name": "prettier-plugin-askama-template",
"version": "1.0.0",
2023-08-19 18:27:59 +03:00
"description": "prettier-plugin-jinja-template but with patches to work with Askama.",
2022-11-18 22:05:06 +03:00
"author": "David Odenwald",
"license": "MIT",
"repository": {
"type": "git",
2023-08-19 18:27:59 +03:00
"url": "git+https://git.fetbuk.ru/WerySkok/prettier-plugin-askama-template.git"
2022-11-18 22:05:06 +03:00
},
"bugs": {
2023-08-19 18:27:59 +03:00
"url": "https://git.fetbuk.ru/WerySkok/prettier-plugin-askama-template/issues"
2022-11-18 22:05:06 +03:00
},
2023-08-19 18:27:59 +03:00
"homepage": "https://git.fetbuk.ru/WerySkok/prettier-plugin-askama-template#readme",
2022-11-18 22:05:06 +03:00
"keywords": [
"prettier",
"plugin",
"template",
"html",
2023-08-19 18:27:59 +03:00
"askama"
2022-11-18 22:05:06 +03:00
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"watch": "npm run build -- --watch",
2023-08-12 21:32:28 +03:00
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
2022-11-18 22:05:06 +03:00
"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": {
2023-08-12 21:32:28 +03:00
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
2022-11-18 23:24:38 +03:00
},
"peerDependencies": {
2023-08-12 21:32:28 +03:00
"prettier": "^3.0.0"
2022-11-21 16:37:35 +03:00
}
2022-11-18 22:05:06 +03:00
}