-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "@springernature/backend-proxy",
"version": "3.0.0",
"description": "Proxies frontend requests to a backend and can render the result",
"main": "index.js",
"files": [
"index.js",
"src/"
],
"scripts": {
"pretest": "npm run lint",
"lint": "eslint src __tests__",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=14 <23"
},
"repository": {
"type": "git",
"url": "https://github.com/springernature/backend-proxy.git"
},
"bugs": "https://github.com/springernature/backend-proxy/issues",
"homepage": "https://github.com/springernature/backend-proxy",
"keywords": [
"proxy",
"render proxy",
"express",
"connect",
"reverse proxy"
],
"author": "Springer Nature",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@springernature/eslint-config": "^2.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^12.20.55",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-unicorn": "^10.0.0",
"express": "^4.21.2",
"jest": "^29.7.0",
"nock": "^11.9.1",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/__tests__/unit/mock-files"
]
}
}