-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.82 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
{
"name": "eslint-config-opencollective",
"version": "5.1.0",
"description": "Base ESLint config shared across OpenCollective projects (node and browser)",
"repository": {
"type": "git",
"url": "https://github.com/opencollective/eslint-config-opencollective.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:quiet": "npm run lint -- --quiet",
"prettier": "prettier \"*.@(js|cjs|json|md)\"",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --list-different",
"test": "npm run lint && npm run prettier:check",
"prepare": "husky"
},
"author": {
"name": "Open Collective, Inc.",
"email": "[email protected]"
},
"contributors": [
"Xavier Damman <[email protected]>",
"Aseem Sood <[email protected]>",
"François Hodierne <[email protected]>",
"Marco Barcellos <[email protected]>",
"Arnaud Bénard",
"Sébastien Dubois"
],
"license": "ISC",
"peerDependencies": {
"@typescript-eslint/parser": ">=8.0.0",
"eslint": ">=9.0.0",
"eslint-plugin-import": ">=2.0.0",
"eslint-plugin-n": ">=17.0.0",
"eslint-plugin-react": ">=7.0.0",
"eslint-plugin-simple-import-sort": ">=12.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-plugin-import": ">=2.31.0",
"eslint-plugin-n": ">=17.11.1",
"eslint-plugin-react": ">=7.37.2",
"eslint-plugin-simple-import-sort": ">=12.1.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript-eslint": "^8.11.0"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}