-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.74 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@datadog/datadog-ci-plugin-lambda",
"version": "5.17.0",
"description": "Datadog CI plugin for `lambda` commands",
"license": "Apache-2.0",
"keywords": [
"datadog",
"datadog-ci",
"plugin"
],
"homepage": "https://github.com/DataDog/datadog-ci/tree/master/packages/plugin-lambda",
"repository": {
"type": "git",
"url": "https://github.com/DataDog/datadog-ci.git",
"directory": "packages/plugin-lambda"
},
"main": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/bundle.d.ts",
"default": "./dist/bundle.js"
},
"./commands/*": {
"development": "./src/commands/*.ts",
"default": "./dist/commands/*.js"
},
"./functions/*": {
"development": "./src/functions/*.ts",
"default": "./dist/functions/*.js"
}
},
"files": [
"dist/bundle.js",
"dist/bundle.js.map",
"dist/bundle.js.LEGAL.txt",
"dist/bundle.d.ts",
"dist/commands/*.js",
"dist/functions/*.js",
"dist/functions/*.js.map",
"dist/functions/*.js.LEGAL.txt",
"dist/functions/*.d.ts",
"README",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn package:clean; yarn package:build",
"lint": "yarn package:lint",
"prepack": "yarn package:clean-dist; yarn package:bundle:npm"
},
"peerDependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.1045.0",
"@aws-sdk/client-iam": "^3.1045.0",
"@aws-sdk/client-lambda": "^3.1045.0",
"@aws-sdk/credential-providers": "^3.1045.0",
"@smithy/property-provider": "2.2.0",
"@smithy/util-retry": "2.2.0"
},
"peerDependenciesMeta": {
"@aws-sdk/client-cloudwatch-logs": {
"optional": true
},
"@aws-sdk/client-iam": {
"optional": true
},
"@aws-sdk/client-lambda": {
"optional": true
},
"@aws-sdk/credential-providers": {
"optional": true
},
"@smithy/property-provider": {
"optional": true
},
"@smithy/util-retry": {
"optional": true
}
},
"devDependencies": {
"@aws-sdk/client-cloudwatch-logs": "3.1045.0",
"@aws-sdk/client-iam": "3.1045.0",
"@aws-sdk/client-lambda": "3.1045.0",
"@aws-sdk/credential-provider-ini": "3.972.38",
"@aws-sdk/credential-providers": "3.1045.0",
"@aws-sdk/types": "3.973.8",
"@datadog/datadog-ci-base": "workspace:*",
"@smithy/property-provider": "2.2.0",
"@smithy/util-retry": "2.2.0",
"aws-sdk-client-mock": "4.1.0",
"aws-sdk-client-mock-jest": "4.1.0",
"chalk": "3.0.0",
"clipanion": "3.2.1",
"fuzzy": "0.1.3",
"inquirer": "8.2.7",
"inquirer-checkbox-plus-prompt": "1.4.2",
"ora": "5.4.1",
"upath": "2.0.1"
}
}