-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.33 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
{
"name": "eslint-plugin-inclusive-language",
"version": "2.2.1",
"description": "An ESLint plugin to raise awareness for using inclusive language not only in your codebase, but in life.",
"main": "lib/index.js",
"repository": "muenzpraeger/eslint-plugin-inclusive-language",
"author": "René Winkelmeyer @muenzpraeger",
"license": "CC0-1.0",
"dependencies": {
"humps": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"files": [
"lib/"
],
"scripts": {
"lint": "eslint lib/**/*.js",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*.{js,json,md,yml}'",
"prettier:verify": "prettier --list-different '**/*.{js,json,md,yml}'",
"test:unit": "jest",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch"
},
"bugs": {
"url": "https://github.com/muenzpraeger/eslint-plugin-inclusive-language"
},
"homepage": "https://github.com/muenzpraeger/eslint-plugin-inclusive-language#readme",
"lint-staged": {
"**/*.{js,json,md,yml}": [
"prettier --write"
],
"lib/**/*.js": [
"eslint"
]
}
}