forked from codecentric-oss/http-api-proxy-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "http-api-proxy-server",
"version": "0.0.0-development",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codecentric-oss/http-api-proxy-server"
},
"engines": {
"node": ">=16.x"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && npm run build:check",
"build:check": "cat dist/index.js dist/index.d.ts > /dev/null",
"test": "npm run test:unit && npm run use-case:tests",
"lint": "echo TODO",
"test:unit": "jest --config=\"jest.config.ts\"",
"test:unit:watch": "npm run test:unit -- --watchAll",
"use-case:tests": "concurrently --success 'command-1' --kill-others 'npm run joke-webpage' 'sleep 2 && npm run e2e-playwright'",
"joke-webpage": "http-server use-cases/tests/example-page -p 8000 > /dev/null 2> /dev/null",
"e2e-playwright": "npx playwright test --config use-cases/tests/playwright.e2e.config.ts",
"prepublish": "npm run build",
"semantic-release": "semantic-release --branches main",
"commit": "git-cz"
},
"dependencies": {
"axios": "^1.6.0",
"remeda": "^1.24.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@playwright-testing-library/test": "^4.0.1",
"@playwright/test": "1.28.1",
"@types/jest": "^29.5.3",
"commitizen": "^4.3.0",
"concurrently": "^8.2.1",
"cz-conventional-changelog": "^3.3.0",
"http-server": "^14.1.1",
"jest": "^29.6.2",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.1",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}