-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "eslint-plugin-ssr-friendly",
"version": "1.2.0",
"license": "MIT",
"main": "./src/index.js",
"description": "ESLint plugin that detects incorrect use of DOM globals in order to properly do SSR",
"author": "Flavio De Stefano <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kopiro/eslint-plugin-ssr-friendly"
},
"homepage": "https://github.com/kopiro/eslint-plugin-ssr-friendly",
"bugs": "https://github.com/kopiro/eslint-plugin-ssr-friendly/issues",
"files": [
"src/index.js"
],
"keywords": [
"eslint",
"eslintplugin",
"ssr",
"server-side-rendering",
"globals",
"react",
"nodejs"
],
"scripts": {
"test": "node ./test/index.test.js"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"dependencies": {
"globals": "^13.8.0"
}
}