-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "@prettier/plugin-ruby",
"version": "4.0.4",
"description": "prettier plugin for the Ruby programming language",
"type": "module",
"main": "src/plugin.js",
"scripts": {
"checkFormat": "prettier . --check",
"lint": "eslint --cache .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prettier/plugin-ruby.git"
},
"author": "Kevin Newton",
"license": "MIT",
"bugs": {
"url": "https://github.com/prettier/plugin-ruby/issues"
},
"homepage": "https://github.com/prettier/plugin-ruby#readme",
"peerDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1"
},
"jest": {
"globalSetup": "./test/js/globalSetup.js",
"globalTeardown": "./test/js/globalTeardown.js",
"setupFilesAfterEnv": [
"./test/js/setupTests.js"
],
"testRegex": ".test.js$",
"transform": {}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"trailingComma": "none",
"plugins": [
"./src/plugin.js"
]
}
}