-
Notifications
You must be signed in to change notification settings - Fork 246
/
package.json
63 lines (63 loc) · 1.62 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
60
61
62
63
{
"name": "@scope/jsii-calc-base",
"version": "0.20.8",
"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/jsii-calc-base"
},
"engines": {
"node": ">= 10.3.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii && jsii-rosetta",
"test": "diff-test test/assembly.jsii .jsii",
"test:update": "npm run build && UPDATE_DIFF=1 npm run test"
},
"dependencies": {
"@scope/jsii-calc-base-of-base": "^0.20.8"
},
"peerDependencies": {
"@scope/jsii-calc-base-of-base": "^0.20.8"
},
"devDependencies": {
"jsii": "^0.20.8",
"jsii-build-tools": "^0.20.8",
"jsii-rosetta": "^0.20.8"
},
"jsii": {
"outdir": "dist",
"targets": {
"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"
},
"python": {
"distName": "scope.jsii-calc-base",
"module": "scope.jsii_calc_base"
}
},
"versionFormat": "short"
}
}