-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
70 lines (70 loc) · 1.55 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
66
67
68
69
70
{
"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": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.2",
"jest": "^29.5.0",
"prettier": "^3.1.0",
"pretty-quick": "^4.0.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"no-undef": "off"
}
},
"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"
]
}
}