-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "eslint-plugin-no-browser-globals",
"version": "1.0.1",
"description": "An ESLint plugin that disallows the use of browser globals. It is useful when you want to make sure that your code is not using browser globals, which can cause issues when running in a non-browser environment.",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"test": "node test.js"
},
"keywords": [
"eslint",
"plugin",
"eslint-plugin",
"SSR",
"Server Side Rendering",
"jsx",
"tsx",
"react"
],
"author": "炒米粉 <hjw741@foxmail.com>",
"license": "MIT",
"homepage": "https://github.com/FriedRiceNoodles/eslint-plugin-no-browser-globals",
"repository": {
"type": "git",
"url": "https://github.com/FriedRiceNoodles/eslint-plugin-no-browser-globals"
},
"dependencies": {
"globals": "^15.12.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}