This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
125 lines (125 loc) · 3.76 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
{
"name": "iguazu-rpc",
"description": "Iguazu adapter for any asynchronous call to an API.",
"homepage": "https://github.com/americanexpress/iguazu-rpc",
"bugs": {
"url": "https://github.com/americanexpress/iguazu-rpc/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/iguazu-rpc.git"
},
"version": "1.6.1",
"contributors": [
"Andres Escobar <Andres.Escobar@aexp.com> (https://github.com/anescobar1991)",
"James Singleton <James.Singleton1@aexp.com> (https://github.com/JamesSingleton)",
"Jamie King <Jamie.King@aexp.com> (https://github.com/10xLaCroixDrinker)",
"Jonathan Adshead <Jonathan.Adshead@aexp.com> (https://github.com/JAdshead)",
"Michael Tobia <Michael.M.Tobia@aexp.com> (https://github.com/Francois-Esquire)",
"Michael Tomcal <Michael.A.Tomcal@aexp.com> (https://github.com/mtomcal))",
"Stephanie Coates <Stephanie.Coates1@aexp.com> (https://github.com/stephaniecoates)",
"Nelly Kiboi <Nelly.J.Kiboi@aexp.com> (https://github.com/nellyk)",
"Nickolas Oliver <nickolas.oliver@aexp.com> (https://github.com/PixnBits)",
"Andrew Curtis <andrew.curtis@aexp.com> (https://github.com/drewcur)",
"Scott McIntyre <scott.mcintyre@aexp.com> (https://github.com/smackfu)"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"test": "npm run test:lint && npm run test:unit",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lint": "eslint --ignore-path .gitignore --ext js,jsx,snap,md .",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -o npm: -c -i",
"test:unit": "jest",
"posttest": "npm run test:git-history && npm run test:lockfile",
"prepack": "npm run build"
},
"keywords": [
"async",
"react",
"redux",
"react-redux",
"fetch",
"data",
"query",
"iguazu",
"cache",
"XML",
"JSON"
],
"author": "Nick Oliver <Nickolas.Oliver@aexp.com>",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/polyfill": "^7.2.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.3",
"amex-jest-preset": "^6.1.0",
"babel-jest": "^24.1.0",
"babel-preset-amex": "^3.2.0",
"eslint": "^6.5.0",
"eslint-config-amex": "^11.1.0",
"husky": "^3.0.9",
"jest": "^24.1.0",
"jest-fetch-mock": "^1.2.0",
"lockfile-lint": "^4.3.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"semantic-release": "^21.0.5"
},
"jest": {
"preset": "amex-jest-preset",
"coveragePathIgnorePatterns": [
"./setupJest.js",
"<rootDir>/lib",
"<rootDir>/commitlint.config.js"
],
"setupFiles": [
"./setupJest.js"
]
},
"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"
}
},
"dependencies": {
"immutable": "^3.8.1",
"object-hash": "^1.3.1"
}
}