| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "eslint-plugin-node",
- "version": "6.0.1",
- "description": "Additional ESLint's rules for Node.js",
- "main": "lib/index.js",
- "files": [
- "lib"
- ],
- "scripts": {
- "build": "node scripts/update.js",
- "clean": "rimraf .nyc_output coverage",
- "codecov": "nyc report -r lcovonly && codecov",
- "coverage": "nyc report -r lcov && opener ./coverage/lcov-report/index.html",
- "lint": "eslint lib tests/lib index.js",
- "postversion": "git push && git push --tags",
- "pretest": "npm run -s lint",
- "preversion": "npm t && npm run -s build",
- "test": "nyc npm run -s test:_mocha",
- "test:_mocha": "_mocha tests/lib/**/*.js --reporter progress",
- "watch": "npm run test:_mocha -- --watch --growl"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "eslint": ">=3.1.0"
- },
- "dependencies": {
- "ignore": "^3.3.6",
- "minimatch": "^3.0.4",
- "resolve": "^1.3.3",
- "semver": "^5.4.1"
- },
- "devDependencies": {
- "codecov": "^3.0.0",
- "eslint": "^4.17.0",
- "eslint-config-mysticatea": "^13.0.2",
- "mocha": "^5.0.0",
- "nyc": "^11.0.1",
- "opener": "^1.4.3",
- "rimraf": "^2.6.1",
- "shelljs": "^0.8.1"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/mysticatea/eslint-plugin-node.git"
- },
- "keywords": [
- "eslint",
- "eslintplugin",
- "eslint-plugin",
- "node",
- "nodejs",
- "ecmascript",
- "shebang",
- "file",
- "path",
- "import",
- "require"
- ],
- "author": "Toru Nagashima",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/mysticatea/eslint-plugin-node/issues"
- },
- "homepage": "https://github.com/mysticatea/eslint-plugin-node#readme"
- }
|