-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.53 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
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
{
"name": "eslint-config-uphold",
"version": "7.0.0",
"description": "Uphold-flavored ESLint config",
"keywords": [
"config",
"eslint",
"lint",
"shared"
],
"homepage": "https://github.com/uphold/eslint-config-uphold#readme",
"bugs": {
"url": "https://github.com/uphold/eslint-config-uphold/issues"
},
"license": "MIT",
"author": "Uphold",
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/uphold/eslint-config-uphold.git"
},
"files": [
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint",
"release": "release-it",
"test": "node --test $(find test -name '*.test.js')"
},
"dependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"dayjs": "^1.11.21",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.3.1",
"eslint-plugin-n": "^18.2.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-sort-imports-requires": "^2.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-sql-template": "^3.2.0",
"globals": "^17.8.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.1",
"@types/node": "^24",
"@uphold/github-changelog-generator": "^4.0.2",
"@vitest/eslint-plugin": "^1.6.24",
"eslint": "~10.8.0",
"eslint-plugin-jest": "^29.16.0",
"eslint-plugin-mocha": "^11.3.0",
"prettier": "^3.9.6",
"release-it": "^20.2.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
},
"peerDependencies": {
"@vitest/eslint-plugin": "^1.6.24",
"eslint": "~10.8.0",
"eslint-plugin-jest": "^29.16.0",
"eslint-plugin-mocha": "^11.3.0",
"prettier": "^3.9.6",
"typescript": ">4.8.4 <7.0.0",
"typescript-eslint": "^8.65.0"
},
"peerDependenciesMeta": {
"@vitest/eslint-plugin": {
"optional": true
},
"eslint-plugin-jest": {
"optional": true
},
"eslint-plugin-mocha": {
"optional": true
},
"prettier": {
"optional": true
},
"typescript": {
"optional": true
},
"typescript-eslint": {
"optional": true
}
},
"pre-commit": [
"lint"
],
"engines": {
"node": "^22.12.0 || >=24"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24",
"onFail": "ignore"
}
},
"type": "module"
}