mirror of
https://github.com/bendtherules/eslint-plugin-undef-init.git
synced 2026-08-18 22:02:50 +00:00
27 lines
561 B
JSON
27 lines
561 B
JSON
{
|
|
"name": "eslint-plugin-undef-init",
|
|
"version": "0.0.0",
|
|
"description": "Always initialize variables declarations. Instead of naked declarations, set it to undefined.",
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin"
|
|
],
|
|
"author": "Abhas Bhattacharya",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"test": "mocha tests --recursive"
|
|
},
|
|
"dependencies": {
|
|
"requireindex": "~1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "~3.9.1",
|
|
"mocha": "^3.1.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"license": "ISC"
|
|
}
|