-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 927 Bytes
/
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
{
"name": "prettier-plugin-eruby",
"version": "0.0.3",
"description": "Prettier plugin for eRuby(erb)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ippachi/prettier-plugin-eruby.git"
},
"keywords": [
"prettier",
"eruby",
"erb"
],
"author": "ippachi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ippachi/prettier-plugin-eruby/issues"
},
"homepage": "https://github.com/ippachi/prettier-plugin-eruby#readme",
"peerDependencies": {
"prettier": ">=3.0.0 <4"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/node": "^20.4.10",
"jest": "^29.6.2",
"prettier": ">=3.0.0 <4",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}