-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "prettier-plugin-jinja-template",
"version": "2.0.0",
"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",
"build:regex": "babel src/regex_editable.ts -o src/regex.ts",
"watch": "npm run build -- --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --verbose",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.13",
"babel-plugin-transform-regex": "^4.3.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"regex": "^4.3.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"peerDependencies": {
"prettier": "^3.0.0"
}
}