forked from americanexpress/eslint-config-amex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.78 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
{
"name": "eslint-config-amex",
"version": "13.1.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"
},
"jest": {
"preset": "amex-jest-preset",
"testPathIgnorePatterns": [
"/node_modules/",
"test.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/commitlint.config.js"
]
},
"contributors": [
"Andres Escobar",
"Jimmy King",
"Nick Oliver"
],
"author": "Andres Escobar <[email protected]> (https://github.com/anescobar1991)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/eslint-config-amex.git"
},
"keywords": [
"amex",
"eslint",
"eslintconfig"
],
"dependencies": {
"babel-eslint": "^10.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jest-dom": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-unicorn": "^20.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0",
"estraverse-fb": "^1.3.2",
"prettier": "2.0.5",
"typescript": "^3.8.3"
},
"peerDependencies": {
"eslint": "^6.2.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"ajv": "^6.12.0",
"amex-jest-preset": "^6.1.0",
"eslint": "^6.2.2",
"husky": "^4.2.3",
"jest": "^25.2.3",
"lockfile-lint": "^4.2.2",
"semantic-release": "^17.0.4"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"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"
]
}
}