Files
meteor/package.json
Dominik Ferber 63eba5883e chore(scaffolding): Add rule scaffolding
Developers may now use  npm run lint to scaffold new rules.
2015-10-04 13:19:08 +02:00

76 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",
"rule": "babel scripts/new-rule.js | node",
"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"
},
"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",
"lodash.find": "3.2.1",
"path-exists": "2.0.0",
"walkdir": "0.0.10"
},
"devDependencies": {
"babel": "5.8.23",
"babel-eslint": "4.1.3",
"colors": "1.1.2",
"coveralls": "2.11.4",
"cz-conventional-changelog": "1.0.1",
"eslint": "1.6.0",
"ghooks": "0.3.2",
"istanbul": "0.3.21",
"mocha": "2.3.3",
"readline-sync": "1.2.21",
"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": []
}