-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "eslint-config-uphold",
"version": "6.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",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/uphold/eslint-config-uphold.git"
},
"files": [
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src test/index.js",
"release": "release-it",
"test": "mocha $npm_package_options_mocha"
},
"dependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-rulesdir": "^0.2.2",
"eslint-plugin-sort-destructure-keys": "^1.6.0",
"eslint-plugin-sort-imports-requires": "^1.0.2",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-sql-template": "^2.0.0"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^3.4.0",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.7",
"release-it": "^17.2.1",
"should": "^13.2.3"
},
"peerDependencies": {
"eslint": "^8.20.0",
"prettier": "^2.8.7"
},
"pre-commit": [
"lint"
],
"engines": {
"node": ">=18"
},
"options": {
"mocha": "-t 10000 --require should test"
}
}