forked from ember-cli/eslint-plugin-ember
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "eslint-plugin-ember",
"version": "10.5.4",
"description": "Eslint plugin for Ember.js apps",
"keywords": [
"eslint",
"ember",
"ember.js",
"plugin",
"styleguide",
"rules"
],
"homepage": "https://github.com/ember-cli/eslint-plugin-ember#readme",
"bugs": {
"url": "https://github.com/ember-cli/eslint-plugin-ember/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/eslint-plugin-ember.git"
},
"license": "MIT",
"main": "lib/index.js",
"directories": {
"test": "test",
"rules": "rules"
},
"files": [
"lib"
],
"scripts": {
"changelog": "lerna-changelog",
"lint": "npm-run-all --continue-on-error --aggregate-output --parallel lint:*",
"lint:docs": "markdownlint **/*.md",
"lint:js": "eslint . --cache",
"lint:package-json": "npmPkgJsonLint .",
"lint:package-json-sorting": "sort-package-json --check",
"lint:package-json-sorting:fix": "sort-package-json --fix package.json",
"release": "release-it",
"start": "yarn run test:watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"update": "node ./scripts/update-rules.js && node ./scripts/list-jquery-methods.js"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 96,
"functions": 99,
"lines": 98,
"statements": 98
}
},
"testMatch": [
"**/tests/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/helpers/"
]
},
"dependencies": {
"@ember-data/rfc395-data": "^0.0.4",
"css-tree": "^1.0.0-alpha.39",
"ember-rfc176-data": "^0.3.15",
"eslint-utils": "^3.0.0",
"lodash.kebabcase": "^4.1.1",
"requireindex": "^1.2.0",
"snake-case": "^3.0.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^3.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-markdown": "^2.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^31.0.0",
"jest": "^27.0.3",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"markdownlint-cli": "^0.27.1",
"npm-package-json-lint": "^5.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"release-it": "^14.2.2",
"release-it-lerna-changelog": "^3.1.0",
"sort-package-json": "^1.44.0"
},
"peerDependencies": {
"eslint": ">= 6"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"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"
}
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}