eslint-plugin-ssr-friendly
Version:
ESLint plugin that detects incorrect use of DOM globals in order to properly do SSR
46 lines (45 loc) • 1.18 kB
JSON
{
"name": "eslint-plugin-ssr-friendly",
"version": "1.3.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 <destefano.flavio@gmail.com>",
"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"
}
}