Files
meteor/package.json
2017-08-28 16:12:12 +00:00

100 lines
2.9 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",
"publishConfig": {
"tag": "next"
},
"release": {
"branch": "master"
},
"scripts": {
"build": "babel lib -d dist",
"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",
"format": "prettier --write --trailing-comma es5 --single-quote 'lib/**/*.js' 'tests/**/*.js' 'scripts/**/*.js'",
"lint": "eslint ./",
"prebuild": "npm run clean && mkdir dist",
"prepublishOnly": "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.26.0",
"babel-runtime": "6.26.0",
"escope": "3.6.0",
"invariant": "2.2.2",
"lodash.find": "4.6.0",
"lodash.memoize": "4.1.2",
"path-exists": "3.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"colors": "1.1.2",
"coveralls": "2.13.1",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.5.0",
"eslint-config-airbnb": "15.1.0",
"eslint-config-prettier": "2.3.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "2.2.0",
"eslint-plugin-react": "7.3.0",
"husky": "0.14.3",
"mocha": "3.5.0",
"nyc": "11.1.0",
"prettier": "1.6.0",
"readline-sync": "1.4.7",
"rewire": "2.5.2",
"rimraf": "2.6.1",
"semantic-release": "7.0.2",
"validate-commit-msg": "2.14.0"
},
"peerDependencies": {
"eslint": ">= 3.7.0 < 5"
},
"engines": {
"node": ">=4"
},
"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": []
}