-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
80 lines (80 loc) · 2.41 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
{
"private": true,
"name": "@temporalio/test",
"version": "1.11.5",
"description": "Temporal.io SDK Tests",
"scripts": {
"build": "npm-run-all build:protos build:ts",
"build:ts": "tsc --build",
"build:protos": "node ./scripts/compile-proto.js",
"test": "ava ./lib/test-*.js",
"test.watch": "ava --watch ./lib/test-*.js"
},
"ava": {
"timeout": "60s",
"concurrency": 1,
"workerThreads": false
},
"keywords": [
"temporal",
"workflow",
"worker",
"isolate"
],
"author": "Temporal Technologies Inc. <[email protected]>",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.12.4",
"@grpc/proto-loader": "^0.7.10",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/core": "^1.19.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.46.0",
"@opentelemetry/sdk-node": "^0.46.0",
"@opentelemetry/semantic-conventions": "^1.19.0",
"@temporalio/activity": "file:../activity",
"@temporalio/client": "file:../client",
"@temporalio/cloud": "file:../cloud",
"@temporalio/common": "file:../common",
"@temporalio/core-bridge": "file:../core-bridge",
"@temporalio/interceptors-opentelemetry": "file:../interceptors-opentelemetry",
"@temporalio/nyc-test-coverage": "file:../nyc-test-coverage",
"@temporalio/proto": "file:../proto",
"@temporalio/testing": "file:../testing",
"@temporalio/worker": "file:../worker",
"@temporalio/workflow": "file:../workflow",
"arg": "^5.0.2",
"async-retry": "^1.3.3",
"ava": "^5.3.1",
"dedent": "^1.5.1",
"glob": "^10.3.10",
"istanbul-lib-coverage": "^3.2.2",
"long": "^5.2.3",
"node-fetch": "^2.7.0",
"protobufjs": "^7.2.5",
"protobufjs-cli": "^1.1.2",
"rxjs": "7.8.1",
"stack-utils": "^2.0.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/fs-extra": "^11.0.4",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/ms": "^0.7.34",
"@types/node-fetch": "^2.6.10",
"@types/pidusage": "^2.0.5",
"@types/uuid": "^9.0.7",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"pidusage": "^3.0.2"
},
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git",
"directory": "packages/test"
},
"homepage": "https://github.com/temporalio/sdk-typescript#readme"
}