UNPKG

eslint-plugin-sort-requires

Version:

ESLint rule to enforce sorting of variable declarations in a group of require() calls

52 lines (51 loc) 1.33 kB
{ "name": "eslint-plugin-sort-requires", "version": "2.1.0", "description": "ESLint rule to enforce sorting of variable declarations in a group of require() calls", "main": "dist/index.js", "scripts": { "build": "rimraf dist && babel lib -d dist", "lint": "eslint .", "lint:watch": "esw -w", "prepublish": "npm test && npm run build", "test": "jest", "test:watch": "jest --watch" }, "repository": { "type": "git", "url": "https://github.com/kentor/eslint-plugin-sort-requires" }, "keywords": [ "commonjs", "eslint", "eslint-plugin", "eslint-plugin-sort", "eslintplugin", "require", "sort-requires", "sorting" ], "author": "Kenneth Chung <ken70r@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/kentor/eslint-plugin-sort-requires/issues" }, "homepage": "https://github.com/kentor/eslint-plugin-sort-requires", "devDependencies": { "babel-cli": "6.16.0", "babel-jest": "16.0.0", "babel-preset-es2015": "6.16.0", "eslint": "3.7.1", "eslint-config-kentor": "3.6.1", "eslint-watch": "2.1.14", "jest": "16.0.1", "rimraf": "2.5.4" }, "jest": { "testPathIgnorePatterns": [ "dist", "/node_modules/" ], "testRegex": "(/tests/.*?)|(/__tests__/.*?-test)\\.js$" } }