-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "@blubblubinc/eslint-config-blubblub-backend",
"version": "0.6.8",
"description": "ESLint configuration for backend projects of Blub Blub Inc.",
"main": "index.js",
"author": "Blub Blub Inc.",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/blubblub/eslint-config-blubblub-backend"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"blubblub",
"javascript",
"styleguide",
"backend"
],
"bugs": {
"url": "https://github.com/blubblub/eslint-config-blubblub-backend/issues"
},
"homepage": "https://github.com/blubblub/eslint-config-blubblub-backend#readme",
"dependencies": {
"@blubblubinc/eslint-config-blubblub-base": "^0.6.1",
"minimist": "^1.2.6",
"tsconfig.json": "^1.0.11"
},
"devDependencies": {
"eslint": "^8.16.0",
"jest": "^28.1.0",
"typescript": "^4.7.2"
},
"resolutions": {
"**/minimist": "^1.2.6"
},
"eslintConfig": {
"extends": "./index.js",
"rules": {
"unicorn/prefer-module": 0
}
},
"eslintIgnore": [
"node_modules",
"coverage"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6",
"yarn": ">=1"
},
"scripts": {
"lint": "eslint . --ext js",
"validate": "yarn lint",
"preversion": "yarn cache clean && yarn validate",
"postversion": "git push --tags && echo \"Successfully published new package version $npm_package_version\""
}
}