-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "eslint-plugin-ember-best-practices",
"version": "1.1.2",
"description": "Eslint rules for linting for anti-patterns in Ember applications.",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc mocha --recursive tests",
"test-server": "mocha --recursive --growl --watch tests",
"generate-authors": "git shortlog -sne | cut -f 2 | sort | uniq > AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-best-practices/eslint-plugin-ember-best-practices.git"
},
"engines": {
"node": ">= 6.0.0"
},
"author": "",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"devDependencies": {
"babel-eslint": "^10.0.2",
"coveralls": "^2.13.1",
"eslint": "^4.11.0",
"mocha": "^3.2.0",
"mocha-eslint": "^3.0.1",
"nyc": "^11.2.1"
},
"dependencies": {
"requireindex": "^1.1.0"
},
"bugs": {
"url": "https://github.com/ember-best-practices/eslint-plugin-ember-best-practices/issues"
},
"homepage": "https://github.com/ember-best-practices/eslint-plugin-ember-best-practices#readme"
}