forked from aws/jsii
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.07 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
{
"name": "@scope/jsii-calc-base",
"version": "0.0.0",
"private": true,
"description": "An example direct dependency for jsii-calc.",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"homepage": "https://github.com/aws/jsii",
"bugs": {
"url": "https://github.com/aws/jsii/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/jsii.git",
"directory": "packages/@scope/jsii-calc-base"
},
"engines": {
"node": ">= 14.17.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii --project-references && jsii-rosetta",
"test": "diff-test test/assembly.jsii .jsii",
"test:update": "yarn build && UPDATE_DIFF=1 yarn test"
},
"dependencies": {
"@scope/jsii-calc-base-of-base": "2.1.1"
},
"peerDependencies": {
"@scope/jsii-calc-base-of-base": "^2.1.1"
},
"devDependencies": {
"jsii": "6.0.1",
"jsii-build-tools": "^0.0.0",
"jsii-rosetta": "^6.0.0",
"typescript": "6.x"
},
"jsii": {
"metadata": {
"jsii": {
"pacmak": {
"hasDefaultInterfaces": false
},
"rosetta": {
"strict": true
}
}
},
"outdir": "dist",
"targets": {
"go": {
"moduleName": "github.com/aws/jsii/jsii-calc/go",
"packageName": "jcb"
},
"java": {
"package": "software.amazon.jsii.tests.calculator.base",
"maven": {
"groupId": "software.amazon.jsii.tests",
"artifactId": "calculator-base"
}
},
"dotnet": {
"namespace": "Amazon.JSII.Tests.CalculatorNamespace.BaseNamespace",
"packageId": "Amazon.JSII.Tests.CalculatorPackageId.BasePackageId",
"iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/main/logo/default-256-dark.png"
},
"python": {
"distName": "scope.jsii-calc-base",
"module": "scope.jsii_calc_base"
}
},
"tsc": {
"types": []
},
"versionFormat": "short"
}
}