-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 KB
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
{
"name": "eslint-plugin-ghost",
"version": "3.5.0",
"description": "Shared eslint configurations",
"author": "Ghost Foundation",
"homepage": "https://github.com/TryGhost/eslint-plugin-ghost",
"repository": {
"type": "git",
"url": "git://github.com/TryGhost/eslint-plugin-ghost.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"scripts": {
"lint:code": "eslint *.js lib/ --ext .js --cache",
"lint": "yarn lint:code && yarn lint:test",
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache",
"test": "node --test 'test/*.test.js'",
"posttest": "yarn lint",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push ${GHOST_UPSTREAM:-upstream} main --follow-tags; fi"
},
"main": "lib/index.js",
"peerDependencies": {
"eslint": ">=5.11.0"
},
"devDependencies": {
"eslint": "8.56.0",
"eslint-plugin-self": "1.2.1"
},
"license": "MIT",
"dependencies": {
"@kapouer/eslint-plugin-no-return-in-loop": "1.0.0",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"eslint-plugin-ember": "12.7.5",
"eslint-plugin-filenames-ts": "1.3.2",
"eslint-plugin-mocha": "7.0.1",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"eslint-plugin-unicorn": "42.0.0",
"typescript": "5.9.3"
}
}