-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
75
76
77
78
79
80
81
82
{
"name": "cdk8s-flux",
"version": "0.1.3",
"description": "cdk8s library ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rafaribe/cdk8s-flux.git"
},
"author": "Rafael Ribeiro <rafael.ntw@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"rmist": "rm -rf node_modules && yarn install",
"lint": "eslint .",
"prettier": "prettier --write .",
"import": "cdk8s import -l typescript",
"synth": "cdk8s synth",
"compile": "jsii",
"watch": "jsii -w",
"test": "tsc && jest",
"compat": "npx jsii-diff npm:$(node -p \"require('./package.json').name\")",
"package": "jsii-pacmak",
"bump": "standard-version",
"build": "yarn compile && yarn test && yarn run package",
"upgrade": "npm i cdk8s@latest cdk8s-cli@latest",
"upgrade:next": "npm i cdk8s@next cdk8s-cli@next"
},
"dependencies": {
"cdk8s": "^0.21.0",
"constructs": "2.0.1"
},
"peerDependencies": {
"cdk8s": "^0.21.0",
"constructs": "2.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-with-prettier": "^6.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"jsii": "^1.5.0",
"jsii-diff": "^1.5.0",
"jsii-pacmak": "^1.5.0",
"jsii-release": "^0.1.5",
"prettier": "^2.0.5",
"prettier-eslint": "^9.0.1",
"standard-version": "^8.0.0",
"ts-jest": "^25.5.1"
},
"stability": "experimental",
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"js",
"ts"
]
},
"jsii": {
"outdir": "dist",
"versionFormat": "full",
"targets": {
"python": {
"distName": "cdk8s-flux",
"module": "cdk8s-flux"
}
}
}
}