-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.58 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
{
"name": "babel-preset-amex",
"version": "4.0.3",
"description": "Standard babel preset for American Express",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint ./ --ignore-path .gitignore --ext .js",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:unit": "jest",
"posttest": "npm run test:git-history && npm run test:lockfile",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/babel-preset-amex.git"
},
"jest": {
"preset": "amex-jest-preset",
"coveragePathIgnorePatterns": [
"<rootDir>/commitlint.config.js"
]
},
"keywords": [
"babel",
"preset",
"build",
"babel-preset",
"transpile",
"one-app"
],
"author": "Jamie King <jamie.king@aexp.com> (https://github.com/10xLaCroixDrinker)",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-optional-chaining": "^7.23.4",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.1",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"amex-jest-preset": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jest-dom": "^4.0.3",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lockfile-lint": "^4.12.1",
"semantic-release": "^17.4.7"
},
"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"
]
}
}