Files
meteor/package.json
2015-11-20 01:44:30 +01:00

79 lines
2.3 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 --optional runtime --auxiliary-comment-before \"istanbul ignore next\"",
"build:w": "npm run build -- -w",
"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 && npm run unit-test && npm run check-coverage",
"unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- -t 4000 --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": {
"escope": "3.2.0",
"invariant": "2.2.0",
"lodash.find": "3.2.1",
"lodash.memoize": "3.0.4",
"babel-runtime": "6.0.14",
"path-exists": "2.1.0"
},
"devDependencies": {
"babel": "5.8.29",
"babel-eslint": "4.1.5",
"colors": "1.1.2",
"coveralls": "2.11.4",
"cz-conventional-changelog": "1.1.4",
"eslint": "1.7.3",
"ghooks": "0.3.2",
"istanbul": "0.4.0",
"mocha": "2.3.3",
"readline-sync": "1.2.21",
"rewire": "2.4.0",
"rimraf": "2.4.4",
"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": []
}