-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 732 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 732 Bytes
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
{
"name": "eslint-plugin-classnames",
"version": "0.4.0",
"description": "Warn and formats long classNames usage in JSX",
"repository": {
"url": "https://github.com/fsubal/eslint-plugin-classnames"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "fsubal",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests --recursive",
"typecheck": "tsc --noEmit -p jsconfig.json"
},
"dependencies": {},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.0",
"@types/estree-jsx": "^1.0.0",
"eslint": "^9.7.0",
"mocha": "^11.0.1",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT"
}