eslint-plugin-ember
Version:
Eslint plugin for Ember.js apps
96 lines (95 loc) • 2.57 kB
JSON
{
"name": "eslint-plugin-ember",
"version": "7.2.0",
"description": "Eslint plugin for Ember.js apps",
"main": "lib/index.js",
"files": [
"lib"
],
"directories": {
"rules": "rules",
"test": "test"
},
"scripts": {
"changelog": "lerna-changelog",
"lint": "yarn lint:js",
"lint:js": "eslint . --cache",
"start": "yarn run test:watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"update": "node ./scripts/update-rules.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/eslint-plugin-ember.git"
},
"keywords": [
"eslint",
"ember",
"ember.js",
"plugin",
"styleguide",
"rules"
],
"author": "Michał Sajnóg <michal.sajnog@hotmail.com> (http://github.com/michalsnik)",
"contributors": [
"Rafał Leszczyński <raf.leszcz@gmail.com> (http://github.com/rafleszczynski)",
"Adrian Zalewski (http://github.com/bardzusny)",
"Kamil Ejsymont (http://github.com/netes)",
"Casey Watts (http://github.com/caseywatts)",
"Steve Gargan (http://github.com/sgargan)",
"Alex LaFroscia (http://github.com/alexlafroscia)",
"Tobias Bieniek (http://github.com/Turbo87)"
],
"engines": {
"node": ">=8.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-cli/eslint-plugin-ember/issues"
},
"homepage": "https://github.com/ember-cli/eslint-plugin-ember#readme",
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"lerna-changelog": "^0.8.2",
"prettier": "1.18.2"
},
"dependencies": {
"@ember-data/rfc395-data": "^0.0.4",
"ember-rfc176-data": "^0.3.12",
"snake-case": "^2.1.0"
},
"changelog": {
"repo": "ember-cli/eslint-plugin-ember",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"jest": {
"testMatch": [
"**/tests/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 94,
"functions": 99,
"lines": 97,
"statements": 97
}
}
}
}