-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
105 lines (105 loc) · 2.79 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": "@americanexpress/react-seo",
"version": "2.4.0",
"description": "Simple SEO tag manager for React",
"main": "build/index.js",
"scripts": {
"lint": "eslint ./ --ignore-path .gitignore --ext .js",
"test": "jest --ci=false",
"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",
"build": "babel src --out-dir build",
"clean": "rimraf build",
"prepublish": "npm run build",
"prebuild": "npm run clean",
"posttest": "npm run lint && npm run test:git-history && npm run test:lockfile"
},
"jest": {
"preset": "amex-jest-preset-react",
"setupFiles": [
"./test-setup.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/react-seo.git"
},
"keywords": [
"react",
"helmet",
"seo",
"search",
"engine",
"optimization"
],
"contributors": [
"Jacob Franklin <jacob.d.franklin@aexp.com> (https://github.com/amexjake)",
"Jonathan Golden <Jonathan.V.Golden@aexp.com> (https://github.com/jgolden17)"
],
"homepage": "https://github.com/americanexpress/react-seo",
"bugs": {
"url": "https://github.com/americanexpress/react-seo/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"amex-jest-preset-react": "^6.1.0",
"babel-preset-amex": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-amex": "^11.2.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lockfile-lint": "^4.1.0",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-helmet": "^6.1.0"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}