Files
meteor/package.json
Dominik Ferber afff9dd460 refactor: require at least node@6 (drop node@4 support)
Please upgrade node in case you are affected by this. node@6 is the current LTS version

(https://github.com/nodejs/Release#release-schedule).

BREAKING CHANGE: Dropped support of outdated node versions. This package requires at least node@6

now.
2018-05-09 23:47:16 +02:00

82 lines
2.2 KiB
JSON

{
"name": "eslint-plugin-meteor",
"version": "0.0.0-development",
"author": "Dominik Ferber <dominik.ferber+npm@gmail.com>",
"description": "Meteor specific linting rules for ESLint",
"main": "lib/index.js",
"publishConfig": {
"tag": "next"
},
"release": {
"branch": "master"
},
"scripts": {
"coverage:check": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"coverage:report": "nyc report",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"format": "prettier --write 'lib/**/*.js' 'tests/**/*.js' 'scripts/**/*.js'",
"lint": "eslint ./",
"pretest": "npm run lint",
"rule": "node scripts/new-rule.js",
"test": "npm run unit-test && npm run coverage:report && npm run coverage:check",
"unit-test": "nyc --reporter=lcov mocha tests --recursive",
"unit-test:watch": "npm run unit-test -s -- --watch"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"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.2.4"
},
"devDependencies": {
"colors": "~1.2.0",
"coveralls": "3.0.1",
"cz-conventional-changelog": "~2.1.0",
"eslint": "~4.19.0",
"eslint-config-airbnb": "~16.1.0",
"eslint-config-prettier": "~2.9.0",
"eslint-plugin-import": "~2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "~2.6.0",
"eslint-plugin-react": "~7.7.0",
"husky": "~0.14.3",
"mocha": "~5.1.0",
"nyc": "~11.7.1",
"prettier": "~1.12.0",
"readline-sync": "~1.4.9",
"semantic-release": "~15.4.0",
"travis-deploy-once": "4.4.1",
"validate-commit-msg": "~2.14.0"
},
"peerDependencies": {
"eslint": ">= 3.7.0 < 5"
},
"engines": {
"node": ">=6"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"meteor"
],
"config": {
"ghooks": {
"commit-msg": "node_modules/.bin/validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
}
},
"license": "MIT",
"contributors": []
}