-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "@scope/jsii-calc-lib",
"version": "0.20.6",
"private": true,
"description": "A simple calcuator library built on JSII.",
"deprecated": "Really just deprecated for shows...",
"stability": "deprecated",
"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-lib"
},
"engines": {
"node": ">= 10.3.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"test": "diff-test test/assembly.jsii .jsii",
"test:update": "npm run build && UPDATE_DIFF=1 npm run test"
},
"dependencies": {
"@scope/jsii-calc-base": "^0.20.6"
},
"peerDependencies": {
"@scope/jsii-calc-base": "^0.20.6"
},
"devDependencies": {
"jsii": "^0.20.6",
"jsii-build-tools": "^0.20.6"
},
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "software.amazon.jsii.tests.calculator.lib",
"maven": {
"groupId": "software.amazon.jsii.tests",
"artifactId": "calculator-lib",
"versionSuffix": ".DEVPREVIEW"
}
},
"dotnet": {
"namespace": "Amazon.JSII.Tests.CalculatorNamespace.LibNamespace",
"packageId": "Amazon.JSII.Tests.CalculatorPackageId.LibPackageId",
"versionSuffix": "-devpreview"
},
"python": {
"distName": "scope.jsii-calc-lib",
"module": "scope.jsii_calc_lib"
}
},
"versionFormat": "short"
}
}