mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Previously this has been set to 2.0.0, but apparently v2 didn't break the plugin system so it's safe to go all the way back.
91 lines
2.7 KiB
JSON
91 lines
2.7 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": "dev"
|
|
},
|
|
"scripts": {
|
|
"build": "babel lib -d dist --optional runtime",
|
|
"build:w": "npm run build -- -w",
|
|
"build:istanbul": "npm run build -- --auxiliary-comment-before \"istanbul ignore next\"",
|
|
"check-coverage": "istanbul check-coverage",
|
|
"clean": "rimraf dist",
|
|
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
|
|
"lint": "eslint ./",
|
|
"prebuild": "npm run clean && mkdir dist",
|
|
"prepublish": "npm run build",
|
|
"rule": "babel scripts/new-rule.js | node",
|
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
|
"test": "npm run lint && npm run build:istanbul && npm run unit-test && npm run check-coverage",
|
|
"unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- -t 4000 --compilers js:babel-register",
|
|
"unit-test:w": "node_modules/mocha/bin/_mocha tests/**/*.js -t 4000 --compilers js:babel-register --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.6.0",
|
|
"babel-runtime": "6.6.1",
|
|
"escope": "3.5.0",
|
|
"invariant": "2.2.0",
|
|
"lodash.find": "4.2.0",
|
|
"lodash.memoize": "4.0.1",
|
|
"path-exists": "2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "6.6.0",
|
|
"babel-core": "6.6.0",
|
|
"babel-eslint": "5.0.0",
|
|
"babel-plugin-transform-object-rest-spread": "6.5.0",
|
|
"babel-plugin-transform-runtime": "6.6.0",
|
|
"babel-preset-es2015": "6.6.0",
|
|
"babel-preset-stage-3": "6.5.0",
|
|
"colors": "1.1.2",
|
|
"coveralls": "2.11.8",
|
|
"cz-conventional-changelog": "1.1.5",
|
|
"eslint": "2.2.0",
|
|
"eslint-config-airbnb": "6.0.2",
|
|
"ghooks": "1.0.3",
|
|
"istanbul": "1.0.0-alpha.2",
|
|
"mocha": "2.4.5",
|
|
"readline-sync": "1.4.1",
|
|
"rewire": "2.5.1",
|
|
"rimraf": "2.5.2",
|
|
"semantic-release": "4.3.5",
|
|
"validate-commit-msg": "2.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=0.8.0"
|
|
},
|
|
"engines": {},
|
|
"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": []
|
|
}
|