This repository has been archived by the owner on Jun 24, 2022. It is now read-only.
forked from prettier/plugin-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.47 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": "awesomecode-plugin-ruby",
"version": "1.5.2",
"description": "prettier plugin for the Ruby programming language",
"main": "src/plugin.js",
"scripts": {
"check-format": "prettier --check '**/*'",
"lint": "eslint --cache .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xinminlabs/plugin-ruby.git"
},
"author": "Richard Huang",
"license": "MIT",
"bugs": {
"url": "https://github.com/xinminlabs/plugin-ruby/issues"
},
"homepage": "https://github.com/xinminlabs/plugin-ruby#readme",
"dependencies": {
"prettier": ">=1.10"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-prettier": "^7.0.0",
"husky": "^5.0.9",
"jest": "^26.0.0",
"pretty-quick": "^3.1.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"es6": true,
"jest": true,
"node": true
},
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
}
},
"jest": {
"globalSetup": "./test/js/globalSetup.js",
"globalTeardown": "./test/js/globalTeardown.js",
"setupFilesAfterEnv": [
"./test/js/setupTests.js"
],
"testRegex": ".test.js$"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"trailingComma": "none",
"plugins": [
"."
]
}
}