-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "@mafalda-sfu/eslint-plugin",
"version": "2.2.2",
"description": "",
"main": "lib/index.js",
"scripts": {
"docs": "cp README.md docs/ && jsdoc2md lib/**/*.js > docs/API.md",
"lint": "eslint .",
"predocs": "mkdir -p docs/",
"prepare": "husky",
"pretest": "npm run lint",
"test": "c8 --all --src lib mocha",
"test:json": "c8 --all --reporter=json-summary --src lib mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mafalda-SFU/eslint-plugin.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslint-plugin-mafalda",
"eslintplugin",
"plugin"
],
"author": "Jesús Leganés-Combarro 'piranna' (https://piranna.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mafalda-SFU/eslint-plugin/issues"
},
"homepage": "https://github.com/Mafalda-SFU/eslint-plugin#readme",
"dependencies": {
"eslint-rule-composer": "github:Mafalda-SFU/eslint-rule-composer",
"object-unfreeze": "^1.1.0"
},
"devDependencies": {
"@mafalda-sfu/eslint-config": "^0.6.4",
"c8": "^9.1.0",
"chai": "^4.4.1",
"eslint-plugin-eslint-plugin": "^6.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"mocha-chai-jest-snapshot": "^1.1.4"
},
"peerDependencies": {
"eslint": "^8.40.0"
},
"engines": {
"node": ">=14.14.0"
}
}