Files
meteor/package.json
2015-09-28 00:10:15 +02:00

65 lines
1.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",
"scripts": {
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"lint": "eslint ./",
"test": "npm run lint && npm run unit-test",
"unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot --compilers js:babel/register",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prebuild": "rimraf dist && mkdir dist",
"dev": "babel lib -d dist -w",
"build": "babel lib -d dist"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"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": {},
"devDependencies": {
"babel": "5.8.23",
"coveralls": "2.11.4",
"cz-conventional-changelog": "1.0.1",
"eslint": "1.5.1",
"babel-eslint": "4.1.3",
"ghooks": "0.3.2",
"istanbul": "0.3.21",
"mocha": "2.3.3",
"semantic-release": "4.3.5",
"rimraf": "2.4.3"
},
"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": []
}