-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.29 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
{
"name": "@aws/durable-execution-sdk-js-testing",
"description": "AWS Durable Execution Testing SDK for TypeScript",
"version": "1.1.3",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aws/aws-durable-execution-sdk-js.git",
"directory": "packages/aws-durable-execution-sdk-js-testing"
},
"homepage": "https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-testing",
"engines": {
"node": ">=22"
},
"main": "./dist-cjs/index.js",
"module": "./dist/index.mjs",
"types": "./dist-types/index.d.ts",
"bin": {
"run-durable": "dist/cli/run-durable.mjs"
},
"scripts": {
"clean": "rm -rf dist dist-cjs dist-types node_modules coverage .tsbuildinfo .rollup.cache",
"build": "concurrently npm:build:esm npm:build:cjs npm:build:types",
"build:esm": "rollup --config rollup.config.mjs --environment MODE:esm",
"build:cjs": "rollup --config rollup.config.mjs --environment MODE:cjs",
"build:types": "tsc --project tsconfig.build.json --outDir dist-types",
"prepublishOnly": "npm run build && npm run test",
"lint": "eslint --fix",
"prebuild": "npm run lint",
"test": "tsc --noEmit && jest --config jest.config.mjs --collectCoverage --collectCoverageFrom=src/**/*.{ts,js}",
"run-durable": "NODE_OPTIONS=\"--import tsx\" npx run-durable --"
},
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist-cjs/index.js"
}
},
"files": [
"dist/",
"dist-cjs/",
"dist-types"
],
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.29.0",
"@rollup/plugin-replace": "^6.0.3",
"@types/aws-lambda": "^8.10.150",
"@types/semver": "^7.5.8",
"@types/sinonjs__fake-timers": "^15.0.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.0.3",
"semver": "^7.5.4",
"tsx": "^4.20.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.1014.0",
"@sinonjs/fake-timers": "^13.0.5",
"commander": "^14.0.2"
},
"peerDependencies": {
"@aws/durable-execution-sdk-js": ">=1.0.1 <=2.1.0"
},
"private": false
}