-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "eslint-plugin-prettierx",
"version": "0.18.0",
"description": "ESLint plugin to format your code with PrettierX",
"keywords": [
"eslint",
"eslint-config",
"eslint-plugin",
"editconfig",
"prettier",
"prettierx",
"standard",
"standardx",
"standardize",
"formatter"
],
"author": "aMarCruz <amarcruzbox-git@yahoo.com>",
"main": "./index.js",
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"bin": {
"prettierx-init": "bin/prettierx-init.js"
},
"files": [
"*.js",
"bin",
"lib"
],
"repository": {
"url": "/~https://github.com/aMarCruz/eslint-plugin-prettierx",
"type": "git"
},
"bugs": {
"url": "/~https://github.com/aMarCruz/eslint-plugin-prettierx/issues"
},
"scripts": {
"make": "node scripts/build.js",
"lint": "eslint -f unix lib test",
"test": "yarn make && yarn lint"
},
"dependencies": {
"prettier-linter-helpers": "~1.0.0",
"prettierx": "~0.18.0"
},
"devDependencies": {
"@jsbits/deep-clone": "~1.1.1",
"@types/eslint": "~7.2.10",
"@types/node": "~14.14.41",
"@types/prettier": "~2.2.3",
"@typescript-eslint/eslint-plugin": "~4.22.0",
"@typescript-eslint/parser": "~4.22.0",
"eslint": "~7.25.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-self": "~1.2.1",
"prettier": "aMarCruz/prettier#2.2.2",
"typescript": "~4.2.4"
},
"peerDependencies": {
"eslint": "^7.0.0"
},
"license": "MIT"
}