This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
112 lines (112 loc) · 3.66 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
{
"name": "@americanexpress/fetch-enhancers",
"version": "1.1.5",
"description": "Set of enhancers to extend fetch",
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"files": [
"es",
"lib"
],
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"clean": "rimraf ./lib ./es",
"prebuild": "npm run clean",
"build": "rollup -c",
"prepack": "npm run test && npm run build",
"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,md,snap .",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"test:unit": "NODE_ENV=production jest --coverage",
"posttest": "npm run test:lockfile && npm run test:git-history",
"prepare": "husky install"
},
"keywords": [
"one",
"fetch"
],
"author": "Jonathan Adshead <[email protected]> (https://github.com/JAdshead)",
"contributors": [
"Andres Escobar <[email protected]> (https://github.com/anescobar1991)",
"James Singleton <[email protected]> (https://github.com/JamesSingleton)",
"Jamie King <[email protected]> (https://github.com/10xLaCroixDrinker)",
"Jonathan Adshead <[email protected]> (https://github.com/JAdshead)",
"Michael Tobia <[email protected]> (https://github.com/Francois-Esquire)",
"Michael Tomcal <[email protected]> (https://github.com/mtomcal)",
"Stephanie Coates <[email protected]> (https://github.com/stephaniecoates)",
"Nelly Kiboi <[email protected]> (https://github.com/nellyk)",
"Nickolas Oliver <[email protected]> (https://github.com/PixnBits)",
"Ruben Casas <[email protected]> (https://github.com/infoxicator)"
],
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/fetch-enhancers.git"
},
"license": "Apache 2.0",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.8.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^10.0.6",
"@semantic-release/release-notes-generator": "^11.0.7",
"amex-jest-preset": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-preset-amex": "^3.3.0",
"core-js": "^3.22.5",
"eslint": "^8.15.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^4.0.1",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lockfile-lint": "^4.3.7",
"node-fetch": "^2.6.7",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"rollup": "^2.8.2",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^21.1.2"
},
"dependencies": {
"abort-controller": "^3.0.0",
"tough-cookie": "^4.1.3"
},
"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"
]
}
}