-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 758 Bytes
/
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
{
"name": "eslint-plugin-ember-best-practices",
"version": "0.4.0",
"description": "Eslint rules for linting for anti-patterns in Ember applications.",
"main": "lib/index.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "nyc mocha --recursive tests",
"test-server": "mocha --recursive --growl --watch tests"
},
"repository": "chadhietala/ember-best-practices",
"engines": {
"node": ">= 6.0.0"
},
"author": "",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"devDependencies": {
"eslint": "^3.11.1",
"mocha": "^3.2.0",
"mocha-eslint": "^3.0.1",
"nyc": "^10.0.0"
},
"dependencies": {
"requireindex": "^1.1.0"
}
}