This repository was 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
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.71 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.71 KB
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
{
"name": "@americanexpress/one-app-dev-proxy",
"version": "2.0.0",
"description": "Proxy requests to remote servers locally while also allowing for an express middleware to be provided and applied to all requests",
"main": "lib/index.js",
"scripts": {
"test:lint": "eslint --ignore-path .eslintignore --ext .js,.snap .",
"test:unit": "jest",
"test": "npm run test:unit && npm run test:lint && npm run test:git-history",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"build": "babel src --out-dir lib",
"prepack": "npm run test && npm run build",
"posttest": "npm run test:lockfile"
},
"files": [
"src",
"bin",
"lib"
],
"jest": {
"preset": "amex-jest-preset",
"coveragePathIgnorePatterns": [
"<rootDir>/lib",
"<rootDir>/bin/set-middleware.js",
"<rootDir>/commitlint.config.js"
]
},
"bin": {
"set-middleware": "./bin/set-middleware.js"
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/one-app-dev-proxy.git"
},
"keywords": [
"proxy",
"mock",
"api",
"One Amex",
"one-app",
"amex"
],
"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)"
],
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^3.0.0",
"cors": "^2.8.3",
"express": "^4.18.2",
"node-fetch": "2.6.7",
"rimraf": "^2.6.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.0",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.0",
"amex-jest-preset": "^7.0.0",
"babel-preset-amex": "^4.0.0",
"eslint": "^8.0.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "4.0.1",
"husky": "^3.0.9",
"jest": "^29.0.0",
"lockfile-lint": "^4.3.7",
"semantic-release": "^19.0.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"
}
},
"homepage": "https://github.com/americanexpress/one-app-dev-proxy",
"bugs": {
"url": "https://github.com/americanexpress/one-app-dev-proxy/issues"
}
}