-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "eslint-plugin-ember-internal",
"version": "3.0.0",
"description": "Rules used internally by Ember.js",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"ember",
"ember.js"
],
"author": "Tobias Bieniek",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"scripts": {
"lint": "npm-run-all \"lint:*\"",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:docs:fix": "yarn lint:docs --fix",
"lint:eslint-docs": "yarn update:eslint-docs --check",
"lint:js": "eslint .",
"lint:js:fix": "yarn lint:js --fix",
"release": "release-it",
"test": "mocha tests --recursive",
"update:eslint-docs": "eslint-doc-generator"
},
"dependencies": {
"line-column": "^1.0.2",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-doc-generator": "^1.0.2",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"markdownlint-cli": "^0.32.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.0",
"release-it": "^15.5.1"
},
"peerDependencies": {
"eslint": ">= 7"
},
"engines": {
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"license": "MIT",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emberjs/eslint-plugin-ember-internal.git"
},
"bugs": {
"url": "https://github.com/emberjs/eslint-plugin-ember-internal/issues"
},
"homepage": "https://github.com/emberjs/eslint-plugin-ember-internal#readme",
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}