forked from zackad/prettier-plugin-twig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@zackad/prettier-plugin-twig",
"version": "0.7.0",
"description": "Prettier Plugin for Twig",
"repository": {
"type": "git",
"url": "git+https://github.com/zackad/prettier-plugin-twig.git"
},
"license": "Apache-2.0",
"author": "Tom Bartel <[email protected]>",
"type": "module",
"exports": "./src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "DEBUG=eslint:cli-engine eslint .",
"test": "vitest --run"
},
"dependencies": {
"@babel/template": "^7.24.7",
"@babel/types": "^7.24.9",
"he": "^1.2.0",
"lodash": "^4.17.21",
"prettier": "^3.0.0",
"resolve": "^1.12.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"
}
}