-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "prettier-plugin-eex",
"version": "0.6.0",
"license": "MIT",
"description": "Prettier plugin for .html.eex and .html.leex files",
"repository": {
"type": "git",
"url": "https://github.com/adamzapasnik/prettier-plugin-eex"
},
"author": {
"name": "Adam Zapaśnik",
"email": "[email protected]",
"url": "https://adamzapasnik.io"
},
"bugs": {
"url": "https://github.com/adamzapasnik/prettier-plugin-eex/issues"
},
"homepage": "https://github.com/adamzapasnik/prettier-plugin-eex#readme",
"keywords": [
"plugin",
"prettier",
"eex",
"elixir",
"html-eex"
],
"main": "./lib/index.js",
"files": [
"lib/",
"README.md",
"LICENSE",
"prettier_eex_formatter_release"
],
"scripts": {
"prepare": "cd prettier_eex_formatter && MIX_ENV=prod mix escript.build && cp prettier_eex_formatter ../prettier_eex_formatter_release",
"test": "jest",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint —-fix"
]
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-snapshot-serializer-raw": "^1.1.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"peerDependencies": {
"prettier": "^2.0.0"
},
"dependencies": {
"prettier-html-templates": "^0.1.0"
}
}