-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "eslint-plugin-goodeggs",
"version": "15.0.1",
"author": "Good Eggs Inc.",
"description": "An eslint plugin containing linter rules specific to Good Eggs.",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/goodeggs/eslint-plugin-goodeggs.git"
},
"bugs": {
"url": "https://github.com/goodeggs/eslint-plugin-goodeggs/issues"
},
"homepage": "https://github.com/goodeggs/eslint-plugin-goodeggs#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "yarn run clean && babel --out-dir lib --copy-files src",
"clean": "rm -rf lib",
"fmt": "yarn run lint --fix",
"lint": "eslint --ext js,jsx,ts,tsx --ignore-path .gitignore --ignore-pattern '!.*rc.js' .",
"prepublish": "yarn run build",
"test": "yarn run lint && yarn run test:unit",
"test:unit": "jest $JEST_FLAGS"
},
"dependencies": {
"@goodeggs/prettier-config": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-problems": "^6.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-goodeggs": "^15.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-problems": "^6.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-unicorn": "^43.0.2",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"add-module-exports"
]
}
}