-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1 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
{
"name": "aws-emr-runner",
"version": "1.0.0",
"description": "Create AWS EMR cluster and run emr steps, e.g. submit Spark application",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.352.0",
"@aws-sdk/client-emr": "^3.352.0",
"@aws-sdk/client-s3": "^3.352.0",
"@aws-sdk/client-sts": "^3.352.0",
"bluebird": "^3.7.2",
"commander": "^10.0.0",
"dedent": "^0.7.0",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20",
"mustache": "^4.0.1",
"promise-retry": "^2.0.1",
"winston": "^3.9.0"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^9.0.0",
"chai": "^4.2.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"mocha": "^10.0.0",
"pkg": "^5.0.0",
"semantic-release": "^21.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}