-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.6 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "cdk8s-xray",
"version": "0.1.3",
"main": "./out/xrayapp.js",
"types": "./out/xrayapp.d.ts",
"author": {
"name": "mziyabo",
"email": "mziyabo@live.com"
},
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/mziyabo/cdk8s-xray",
"type": "git"
},
"bugs": {
"url": "https://github.com/mziyabo/cdk8s-xray/issues"
},
"homepage": "https://github.com/mziyabo/cdk8s-xray#readme",
"private": false,
"scripts": {
"import": "cdk8s import",
"synth": "cdk8s synth",
"compile": "jsii",
"watch": "tsc -w",
"build": "npm run compile && npm run test",
"upgrade": "npm i cdk8s@latest cdk8s-cli@latest",
"upgrade:next": "npm i cdk8s@next cdk8s-cli@next",
"package": "jsii-pacmak",
"test": "tsc && jest"
},
"dependencies": {},
"devDependencies": {
"constructs": "^2.0.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.1",
"cdk8s": "^0.21.0",
"cdk8s-cli": "^0.21.0",
"jest": "^26.0.1",
"jsii": "^1.5.0",
"jsii-pacmak": "^1.5.0",
"jsii-release": "^0.1.5",
"typescript": "^3.9.2"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"js"
]
},
"jsii": {
"outdir": "dist",
"targets": {
"python": {
"distName": "cdk8s-xray",
"module": "cdk8s-xray"
}
},
"tsc": {
"outDir": "out",
"rootDir": "src",
"declaration": false
},
"exclude": [
"node_modules",
"out\\**\\*.ts",
"example"
]
},
"peerDependencies": {
"constructs": "^2.0.1"
}
}