Files
meteor/package.json
Dominik Ferber 85bb02e317 refactor(): support matching Meteor projects downwards
Until now the path was only checked upwards for Meteor projects. Now it checks all children recursively. This enables having one common eslint configuration above multiple child directories containing Meteor applications.
2015-10-01 23:01:18 +02:00

72 lines
2.0 KiB
JSON

{
"name": "eslint-plugin-meteor",
"author": "Dominik Ferber <dominik.ferber+npm@gmail.com>",
"description": "Meteor specific linting rules for ESLint",
"main": "dist/index.js",
"scripts": {
"build": "babel lib -d dist --auxiliary-comment-before \"istanbul ignore next\"",
"build:w": "npm run build -- -w",
"clean": "rimraf dist",
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"lint": "eslint ./",
"prebuild": "npm run clean && mkdir dist",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run lint && npm run build && npm run unit-test",
"unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot --compilers js:babel/register"
},
"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": {
"invariant": "2.1.1",
"path-exists": "2.0.0",
"walkdir": "0.0.10"
},
"devDependencies": {
"babel": "5.8.23",
"babel-eslint": "4.1.3",
"coveralls": "2.11.4",
"cz-conventional-changelog": "1.0.1",
"eslint": "1.5.1",
"ghooks": "0.3.2",
"istanbul": "0.3.21",
"mocha": "2.3.3",
"rewire": "2.3.4",
"rimraf": "2.4.3",
"semantic-release": "4.3.5",
"validate-commit-msg": "1.0.0"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"engines": {},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"meteor"
],
"release": {
"branch": "master"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog/"
},
"config": {
"ghooks": {
"commit-msg": "node_modules/.bin/validate-commit-msg"
}
},
"license": "MIT",
"contributors": []
}