-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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
{
"dependencies": {
"aws-sdk": "^2.724.0",
"minimist": "^1.2.5"
},
"name": "maestro",
"description": "Maestro is a framework for quickly bootstrapping serverless orchestration workflows with AWS Step Functions",
"version": "2.1.1",
"bin": {
"maestro": "bin/maestro.js"
},
"devDependencies": {
"mocha": "^8.1.1"
},
"scripts": {
"postinstall": "./bin/welcome-message.sh",
"test": "mocha"
},
"man": [
"doc/man/maestro.1",
"doc/man/maestro-deploy.1",
"doc/man/maestro-help.1",
"doc/man/maestro-new.1",
"doc/man/maestro-config.1",
"doc/man/maestro-get-templates.1",
"doc/man/maestro-teardown.1"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maestro-framework/maestro.git"
},
"keywords": [
"lambda",
"aws",
"amazon web services",
"serverless",
"faas",
"maestro",
"orchestration",
"orchestrator",
"framework",
"maestro-framework"
],
"author": "maestro",
"contributors": [
"Torrel Moseley <[email protected]>",
"Zac Klammer <[email protected]>",
"John Isom <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/maestro-framework/maestro/issues"
},
"preferGlobal": true,
"engines": {
"node": ">=10"
},
"homepage": "https://maestro-framework.github.io/"
}