This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
forked from ember-cli/eslint-plugin-ember
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "eslint-plugin-ember",
"version": "5.2.0",
"description": "Eslint plugin for Ember.js apps",
"main": "lib/index.js",
"directories": {
"rules": "rules",
"test": "test"
},
"scripts": {
"changelog": "lerna-changelog",
"lint": "eslint .",
"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 <[email protected]> (http://github.com/michalsnik)",
"contributors": [
"Rafał Leszczyński <[email protected]> (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": ">=4.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": "^7.1.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^21.0.0",
"lerna-changelog": "^0.7.0"
},
"dependencies": {
"ember-rfc176-data": "^0.3.3",
"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"
]
}
}