-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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-ferfalk",
"version": "0.4.0",
"description": "Shared ESLint config",
"keywords": [
"eslint",
"eslint-config",
"eslintconfig"
],
"homepage": "https://github.com/Ferfalk/eslint-config-ferfalk#readme",
"bugs": {
"url": "https://github.com/Ferfalk/eslint-config-ferfalk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Ferfalk/eslint-config-ferfalk.git"
},
"license": "MIT",
"author": "Fernando A. H. Falkiewicz <[email protected]>",
"type": "commonjs",
"main": "index.js",
"files": [
"index.js",
"typescript.js",
"jest.js",
"lint-staged-javascript.js",
"lint-staged-typescript.js"
],
"scripts": {
"build": "tsc",
"commit": "git-cz",
"lint": "eslint .",
"lint-staged": "lint-staged",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"prettier": "@ferfalk/prettier-config",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/cz-commitlint": "^18.4.3",
"@ferfalk/prettier-config": "^1.1.0",
"@types/eslint": "^8.44.7",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.23.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}