{ "name": "eslint-plugin-meteor", "author": "Dominik Ferber ", "description": "Meteor specific linting rules for ESLint", "main": "dist/index.js", "publishConfig": { "tag": "next" }, "release": { "branch": "master" }, "scripts": { "build": "babel lib -d dist --optional runtime", "build:w": "npm run build -- --watch", "coverage:check": "nyc check-coverage --lines 100 --functions 100 --branches 100", "coverage:report": "nyc report", "clean": "rimraf dist", "coveralls": "cat ./coverage/lcov.info | coveralls", "lint": "eslint ./", "prebuild": "npm run clean && mkdir dist", "prepublish": "npm run build", "pretest": "npm run lint", "rule": "babel scripts/new-rule.js | node", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "test": "npm run unit-test && npm run coverage:report && npm run coverage:check", "unit-test": "nyc --require=babel-register --reporter=lcov mocha tests --recursive", "unit-test:w": "npm run unit-test -s -- --watch" }, "files": [ "LICENSE", "README.md", "dist" ], "repository": { "type": "git", "url": "https://github.com/dferber90/eslint-plugin-meteor.git" }, "homepage": "https://github.com/dferber90/eslint-plugin-meteor", "bugs": "https://github.com/dferber90/eslint-plugin-meteor/issues", "dependencies": { "babel-register": "6.6.5", "babel-runtime": "6.6.1", "escope": "3.5.0", "invariant": "2.2.1", "lodash.find": "4.2.0", "lodash.memoize": "4.0.1", "path-exists": "2.1.0" }, "devDependencies": { "babel-cli": "6.6.5", "babel-core": "6.7.2", "babel-eslint": "5.0.0", "babel-plugin-transform-object-rest-spread": "6.6.5", "babel-plugin-transform-runtime": "6.6.0", "babel-preset-es2015": "6.6.0", "babel-preset-stage-3": "6.5.0", "colors": "1.1.2", "coveralls": "2.11.8", "cz-conventional-changelog": "1.1.5", "eslint": "2.2.0", "eslint-config-airbnb": "6.1.0", "ghooks": "1.0.3", "mocha": "2.4.5", "nyc": "6.0.0", "readline-sync": "1.4.1", "rewire": "2.5.1", "rimraf": "2.5.2", "semantic-release": "4.3.5", "validate-commit-msg": "2.3.1" }, "peerDependencies": { "eslint": ">=0.8.0" }, "engines": {}, "keywords": [ "eslint", "eslint-plugin", "eslintplugin", "meteor" ], "config": { "ghooks": { "commit-msg": "node_modules/.bin/validate-commit-msg", "pre-push": "npm test" }, "commitizen": { "path": "node_modules/cz-conventional-changelog/" } }, "license": "MIT", "contributors": [] }