-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
46
47
48
49
50
{
"name": "eslint-plugin-ember-suave",
"version": "2.0.1",
"description": "DockYard's ESLint plugin for Ember apps",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/DockYard/eslint-plugin-ember-suave.git"
},
"author": "DockYard <[email protected]>",
"contributors": [
{
"name": "Alex LaFroscia"
},
{
"name": "Robert Wagner",
"email": "[email protected]",
"url": "https://github.com/rwwagner90"
},
{
"name": "Sergio Arbeo",
"email": "[email protected]",
"url": "https://github.com/Serabe"
}
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests tests/lib/rules/*.js tests/**/*-test.js"
},
"dependencies": {
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-ember": "^7.6.0",
"requireindex": "~1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"doctrine": "^3.0.0",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"mocha-eslint": "^6.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}