-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.37 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
{
"name": "@mafalda-sfu/eslint-config",
"version": "0.7.0",
"description": "Mafalda SFU shareable ESLint config",
"exports": {
".": "./.eslintrc.js",
"./eslint-recommended": "./lib/eslint-recommended.js",
"./format": "./lib/format.js",
"./layout": "./lib/layout.js",
"./problems": "./lib/problems.js",
"./suggestions": "./lib/suggestions.js"
},
"scripts": {
"docs": "cp README.md docs/ && jsdoc2md .*.js > docs/API.md",
"lint": "eslint .",
"predocs": "mkdir -p docs/",
"prepare": "husky",
"pretest": "npm run lint",
"pretest:json": "npm run lint",
"test": "c8 --all --src lib mocha --reporter-option maxDiffSize=0",
"test:json": "c8 --all --reporter=json-summary --src lib mocha --reporter-option maxDiffSize=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mafalda-SFU/eslint-config.git"
},
"keywords": [
"Mafalda",
"SFU",
"ESLint",
"eslintconfig",
"config",
"linting",
"WebRTC",
"Mediasoup"
],
"author": "Jesús Leganés-Combarro 'piranna' <piranna@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mafalda-SFU/eslint-config/issues"
},
"homepage": "https://github.com/Mafalda-SFU/eslint-config#readme",
"dependencies": {
"@typescript-eslint/parser": "^6.21.0",
"deepmerge": "^4.3.1",
"eslint-plugin-etc": "^2.0.3"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^4.4.1",
"husky": "^9.0.11",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"mocha-chai-jest-snapshot": "^1.1.4"
},
"peerDependencies": {
"@cspell/eslint-plugin": "^7.3.4",
"@mafalda-sfu/eslint-plugin": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"eslint": "^8.49.0",
"eslint-plugin-editorconfig": "github:mafalda-sfu/eslint-plugin-editorconfig",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.6.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-package-json": "^0.1.4",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-require-duplicate": "^1.1.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-typescript-sort-keys": "^3.0.0",
"eslint-plugin-unused-imports": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}