@feature-driven/eslint-plugin
Version:
📓 Lint feature-driven rules in full power
55 lines (54 loc) • 1.61 kB
JSON
{
"name": "@feature-driven/eslint-plugin",
"version": "0.0.1",
"description": "📓 Lint feature-driven rules in full power",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"feature-driven",
"feature-based",
"fdd",
"ddd"
],
"author": "Ilya Azin <martis.azin@gmail.com>",
"repository": "https://github.com/feature-driven/eslint-config.git",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"scripts": {
"publish:prepatch": "npm version prepatch && npm publish",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"test": "npm run lint:test && npm run mocha:utils && npm run mocha:rules",
"test:coverage": "nyc npm run test",
"mocha": "mocha",
"mocha:rules": "mocha tests/lib/rules/**",
"mocha:utils": "mocha tests/lib/utils/**",
"lint:test": "eslint .",
"lint:fix": "eslint . --fix",
"new:rule": "yo eslint:rule"
},
"dependencies": {
"requireindex": "~1.1.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-unicorn": "^26.0.0",
"json-schema-defaults": "^0.4.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"yo": "^3.1.1"
},
"engines": {
"node": ">=0.10.0"
}
}