-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.09 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
{
"name": "aws-local-stepfunctions",
"version": "2.0.0",
"description": "Execute an AWS Step Function state machine locally",
"keywords": [
"aws",
"local",
"stepfunctions",
"asl",
"amazon states language",
"state machine"
],
"author": {
"name": "Luis De Anda",
"email": "ldeandac16@gmail.com",
"url": "https://github.com/nibble-4bits"
},
"homepage": "https://github.com/nibble-4bits/aws-local-stepfunctions",
"repository": {
"type": "git",
"url": "https://github.com/nibble-4bits/aws-local-stepfunctions.git"
},
"license": "MIT",
"files": [
"build",
"bin"
],
"type": "module",
"types": "build/main.d.ts",
"main": "build/main.node.cjs",
"module": "build/main.node.esm.js",
"browser": "build/main.browser.esm.js",
"exports": {
"types": "./build/main.d.ts",
"import": "./build/main.node.esm.js",
"require": "./build/main.node.cjs",
"browser": "./build/main.browser.esm.js",
"default": "./build/main.browser.esm.js"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"local-sfn": "./bin/CLI.cjs"
},
"scripts": {
"test": "jest",
"build": "tsup && rm build/main.d.cts",
"build:watch": "tsup --watch",
"prettier": "prettier --check \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\""
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^18.19.33",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.3",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.583.0",
"@aws-sdk/credential-providers": "^3.583.0",
"asl-validator": "^3.8.2",
"commander": "^11.1.0",
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"p-limit": "^3.1.0",
"wildcard-match": "^5.1.3"
}
}