forked from mubaraqwahab/prettier-plugin-twig-enhancements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "prettier-plugin-twig-enhancements",
"version": "1.0.1",
"description": "Subtle enhancements for prettier-plugin-twig-melody",
"main": "src",
"directories": {
"example": "example",
"test": "tests"
},
"files": [
"src"
],
"dependencies": {
"melody-types": "^1.7.5"
},
"devDependencies": {
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.4.2",
"melody-parser": "^1.7.5",
"prettier": "2.1.2",
"prettier-plugin-twig-melody": "^0.4.6"
},
"peerDependencies": {
"prettier": "^2.1.2",
"prettier-plugin-twig-melody": "^0.4.6"
},
"scripts": {
"test": "jest",
"example": "node example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mubaraqwahab/prettier-plugin-twig-frontmatter.git"
},
"keywords": [
"prettier",
"plugin",
"prettier-plugin-twig-melody",
"nunjucks",
"frontmatter"
],
"author": "Mubaraq Wahab",
"license": "ISC",
"bugs": {
"url": "https://github.com/mubaraqwahab/prettier-plugin-twig-frontmatter/issues"
},
"homepage": "https://github.com/mubaraqwahab/prettier-plugin-twig-frontmatter#readme",
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged"
}
},
"lint-staged": {
"*.{js,md}": "prettier --write"
}
}