-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "@prighter/jinja2-beautify",
"version": "1.0.0",
"homepage": "https://github.com/Prighter/jinja2-beautify",
"main": "index.js",
"bin": {
"jinja2-beautify": "index.js"
},
"repository": "[email protected]:Prighter/jinja2-beautify.git",
"author": "Hakan Alp <[email protected]>",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/hakanalpp/Prighter/issues",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"jinja formatter",
"jinja",
"beautifier",
"formatter"
],
"scripts": {
"start": "node index.js",
"test": "node src/test.js"
},
"dependencies": {
"js-beautify": "^1.14.0",
"yargs": "^17.3.0"
},
"devDependencies": {
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.0"
}
}