-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 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
{
"name": "eslint-config-udes",
"version": "1.2.0",
"description": "ESLint shareable config for the UdeS JavaScript style guide",
"keywords": [
"check",
"checker",
"code",
"code style",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"jslint",
"lint",
"linter",
"quality",
"strict",
"style",
"udes",
"validate",
"verify"
],
"homepage": "https://github.com/UdeS-STI/eslint-config-udes#readme",
"bugs": {
"url": "https://github.com/UdeS-STI/eslint-config-udes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UdeS-STI/eslint-config-udes.git"
},
"license": "MIT",
"author": "Université de Sherbrooke",
"main": "index.js",
"files": [
"index.js",
"lit-html.js",
"node-14.js",
"node-16.js",
"react.js"
],
"scripts": {
"format": "npm-run-all format:*",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- --write",
"lint": "npm-run-all lint:*",
"lint-staged": "lint-staged",
"lint:eslint": "eslint --ignore-path .gitignore . --ext js,json,md",
"lint:prettier": "prettier --ignore-path .gitignore --check '**/*.{js,json,md,yml}'",
"prepare": "husky install",
"update": "ncu -u && npm i && npm audit fix"
},
"prettier": "prettier-config-udes",
"dependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"prettier-config-udes": "^1.0.0"
},
"devDependencies": {
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-check-updates": "^11.8.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
},
"peerDependencies": {
"eslint-formatter-gitlab": "^2.2.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-lit": "^1.5.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"prettier": "^2.4.1"
}
}