-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.58 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
{
"name": "@devcycle/test-harness",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"test": "jest --verbose",
"test:ci": "BUILDKIT_PROGRESS=plain yarn test --setupFiles=./ci-config.ts --reporters=default --reporters=jest-junit",
"start:nodejs": "cd proxies/nodejs && NODE_PRESERVE_SYMLINKS=1 ts-node app.ts",
"start:of-nodejs": "cd proxies/openfeature-nodejs && NODE_PRESERVE_SYMLINKS=1 ts-node app.ts",
"start:go": "cd proxies/go && go run .",
"start:dotnet": "cd proxies/dotnet && dotnet run",
"start:java": "cd proxies/java && ./gradlew bootRun",
"start:ruby": "cd proxies/ruby && bundle exec ruby app.rb",
"start:python": "cd proxies/python && python3 -m flask --app app run --host=0.0.0.0 -p 3000",
"use-local": "scripts/use-local.sh"
},
"version": "1.0.0",
"description": "A universal testing system for DevCycle SDKs",
"main": "index.js",
"repository": "[email protected]:DevCycleHQ/test-harness.git",
"author": "DevCycle <[email protected]>",
"license": "MIT",
"devDependencies": {
"@devcycle/types": "^1.20.0",
"@eresearchqut/jest-testcontainers": "^3.7.1",
"@koa/router": "^12.0.0",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"axios": "^1.7.4",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-extended": "^3.2.4",
"jest-junit": "^15.0.0",
"jest-serial-runner": "^1.2.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"lint-staged": "^15.0.2",
"nock": "^13.2.9",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"dotenv": "^16.0.3",
"object-path-immutable": "^4.1.2",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"jest-junit": {
"outputDirectory": ".",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"packageManager": "[email protected]",
"resolutions": {
"cross-spawn@^7.0.*": "^7.0.5"
}
}