-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "eslint-plugin-prefer-spelling",
"version": "1.0.3",
"description": "eslint plugin to enforce preferred spelling of words",
"main": "eslint-plugin-prefer-spelling.js",
"scripts": {
"test": "node prefer-spelling.test.js",
"lint": "eslint ."
},
"author": "ryawaa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryawaa/eslint-plugin-prefer-spelling.git"
},
"bugs": {
"url": "https://github.com/ryawaa/eslint-plugin-prefer-spelling/issues"
},
"homepage": "https://github.com/ryawaa/eslint-plugin-prefer-spelling#readme",
"devDependencies": {
"eslint": "^8.44.0",
"semver": "^7.6.3"
},
"peerDependencies": {
"eslint": ">=8.44.0"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"spelling",
"prefer-spelling"
],
"engines": {
"node": ">=18.17.1"
}
}