-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "@4az/prettier-plugin-html-erb",
"author": "Daniel Castillo",
"private": false,
"version": "0.0.6",
"description": "Prettier plugin for formatting html erb templates.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/forazens/prettier-plugin-html-erb"
},
"homepage": "https://github.com/forazens/prettier-plugin-html-erb#readme",
"bugs": {
"url": "https://github.com/ForAzens/prettier-plugin-html-erb/issues"
},
"keywords": [
"prettier",
"plugin",
"template",
"html",
"ruby",
"erb",
"rails"
],
"main": "src/index.js",
"files": [
"src/**/*.js"
],
"type": "module",
"scripts": {
"build:regex": "babel src/regex_editable.js -o src/regex.js",
"test": "vitest"
},
"peerDependencies": {
"@prettier/plugin-ruby": "^4.0.0",
"prettier": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@prettier/plugin-ruby": "^4.0.4",
"babel-plugin-transform-regex": "^4.3.3",
"prettier": "^3.3.3",
"regex": "^4.4.0",
"vitest": "^2.1.4"
}
}