-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "jsii-sample2",
"version": "1.5.12",
"description": "hello, world",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"watch": "jsii -w",
"package": "/bin/bash ./package.sh",
"bump": "standard-version"
},
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "io.github.cdklabs.jsiisample2",
"maven": {
"groupId": "io.github.cdklabs",
"artifactId": "jsii-sample2",
"versionSuffix": ".TEST"
}
},
"dotnet": {
"namespace": "Cdklabs.JsiiSample2",
"packageId": "Cdklabs.JsiiSample2",
"versionSuffix": "-test"
},
"python": {
"distName": "jsii-sample2",
"module": "jsii_sample2"
},
"go": {
"moduleName": "github.com/awslabs/aws-delivlib-sample"
}
}
},
"repository": {
"type": "git",
"url": "https://git-codecommit.us-east-1.amazonaws.com/v1/repos/jsii-sample"
},
"author": {
"name": "Amazon Web Services"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^14.14.31",
"jsii": "^1.70.0",
"jsii-pacmak": "^1.70.0",
"standard-version": "^9.1.1"
},
"resolutions": {
"@xmldom/xmldom": "^0.8.4"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.4"
}
}