mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Rules now get the Meteor root directory passed to them. They can use that information to extract further information about the file being linted based on its path in the project.
72 lines
2.1 KiB
JSON
72 lines
2.1 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",
|
|
"unit-test:n": "node_modules/mocha/bin/_mocha tests/**/*.js --recursive --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"
|
|
},
|
|
"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": []
|
|
}
|