-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
128 lines (128 loc) · 3.45 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "eslint-config-amex",
"version": "16.4.0",
"description": "American Express' ESLint config",
"main": "index.js",
"scripts": {
"test:lint": "eslint .",
"test:unit": "jest",
"test": "npm run test:unit",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"posttest": "npm run test:lint && npm run test:git-history && npm run test:lockfile",
"prepare": "husky || true"
},
"jest": {
"preset": "amex-jest-preset",
"testPathIgnorePatterns": [
"/node_modules/",
"test.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/commitlint.config.mjs"
]
},
"contributors": [
"Andres Escobar",
"Jamie King <Jamie.King@aexp.com> (https://github.com/10xLaCroixDrinker)",
"Nick Oliver",
"Marcus R. Brown"
],
"author": "Andres Escobar <andres.escobar@aexp.com> (https://github.com/anescobar1991)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/eslint-config-amex.git"
},
"keywords": [
"amex",
"eslint",
"eslintconfig"
],
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@babel/eslint-parser": "7.16.5",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-inclusive-language": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0"
},
"peerDependencies": {
"eslint": "^8.43.0",
"eslint-plugin-jest": "^25.7.0 || ^26.0.0 || ^27.0.0",
"eslint-plugin-jest-dom": "^3.6.3 || ^4.0.0",
"eslint-plugin-prettier": "^4.0.0 || ^5.0.0",
"prettier": "^2.0.0 || ^3.0.0",
"typescript": "^3.8.3 || ^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"eslint-plugin-jest": {
"optional": true
},
"eslint-plugin-jest-dom": {
"optional": true
},
"eslint-plugin-prettier": {
"optional": true
},
"prettier": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"ajv": "^8.14.0",
"amex-jest-preset": "^7.0.0",
"eslint": "^8.43.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.0.11",
"ini": "^4.1.3",
"jest": "^29.7.0",
"lockfile-lint": "^4.13.2",
"prettier": "^3.2.5",
"semantic-release": "^23.1.1",
"typescript": "^5.4.5"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}