forked from trivago/prettier-plugin-twig-melody
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "@zackad/prettier-plugin-twig",
"version": "0.13.0",
"description": "Prettier Plugin for Twig",
"repository": {
"type": "git",
"url": "git+https://github.com/zackad/prettier-plugin-twig.git"
},
"funding": "https://github.com/zackad/prettier-plugin-twig?sponsor=1",
"license": "Apache-2.0",
"author": "Tom Bartel <[email protected]>",
"type": "module",
"exports": {
".": {
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src"
],
"scripts": {
"lint": "DEBUG=eslint:cli-engine eslint .",
"test": "vitest --run",
"test-smoke": "prettier --check --parser=twig --plugin=./src/index.js tests/smoke-test.twig"
},
"dependencies": {
"@babel/template": "^7.24.7",
"@babel/types": "^7.24.9",
"he": "^1.2.0",
"lodash": "^4.17.21",
"prettier": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-prettier-doc": "^1.1.0",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18"
}
}