-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "@ultimaker/eslint-config",
"version": "1.3.2",
"description": "ESLint rules for use across Ultimaker web-based products",
"main": "index.js",
"files": [
"index.js"
],
"author": "Ultimaker B.V.",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/Ultimaker/eslint-config.git"
},
"scripts": {
"build": "exit 0",
"lint": "eslint --ignore-pattern '!.eslintrc.js' '**/{.,}*.js'",
"lint:fix": "eslint --ignore-pattern '!.eslintrc.js' --fix '**/{.,}*.js'"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.31.11",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"typescript": "^4.2.2"
}
}