mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
78 lines
2.1 KiB
JSON
78 lines
2.1 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": {
|
|
"babel-eslint": "10.0.2",
|
|
"colors": "1.3.3",
|
|
"coveralls": "3.0.5",
|
|
"cz-conventional-changelog": "~3.0.2",
|
|
"eslint": "6.1.0",
|
|
"eslint-config-prettier": "~6.0.0",
|
|
"eslint-plugin-prettier": "~3.1.0",
|
|
"marked": "^0.6.0",
|
|
"mocha": "~6.2.0",
|
|
"nyc": "14.1.1",
|
|
"prettier": "~1.18.2",
|
|
"readline-sync": "1.4.10",
|
|
"semantic-release": "15.13.18",
|
|
"validate-commit-msg": "~2.14.0"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">= 3.7.0 < 7"
|
|
},
|
|
"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": []
|
|
}
|