-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
"name": "cdktf-aws-ecr-asset",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/skorfmann/cdktf-aws-ecr-asset.git"
},
"bin": {},
"scripts": {
"projen": "node .projenrc.js && yarn install",
"no-changes": "(git log --oneline -1 | grep -q \"chore(release):\") && echo \"No changes to release.\"",
"bump": "yarn --silent no-changes || standard-version",
"release": "yarn --silent no-changes || (yarn bump && git push --follow-tags origin master)",
"projen:upgrade": "chmod +w package.json && yarn upgrade -L projen && chmod -w package.json && yarn projen",
"compile": "jsii --silence-warnings=reserved-word && jsii-docgen",
"watch": "jsii -w --silence-warnings=reserved-word",
"package": "jsii-pacmak",
"build": "yarn test && yarn compile && yarn run package",
"eslint": "eslint . --ext .ts",
"test": "yarn eslint && rm -fr lib/ && jest --passWithNoTests --updateSnapshot",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"compat": "npx jsii-diff npm:$(node -p \"require('./package.json').name\") -k --ignore-file .compatignore || (echo \"\nUNEXPECTED BREAKING CHANGES: add keys such as 'removed:constructs.Node.of' to .compatignore to skip.\n\" && exit 1)",
"docgen": "jsii-docgen"
},
"author": {
"name": "Sebastian Korfmann",
"email": "sebastian@korfmann.net",
"organization": false
},
"devDependencies": {
"cdktf": "^0.0.15",
"constructs": "^3.0.0",
"@cdktf/provider-aws": "^0.0.16",
"@cdktf/provider-null": "^0.0.3",
"projen": "^0.3.37",
"standard-version": "^8.0.1",
"typescript": "^3.9.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"json-schema": "^0.2.5",
"jest": "^26.0.1",
"@types/jest": "^26.0.7",
"ts-jest": "^26.1.0",
"@types/node": "^10.17.0",
"jsii": "^1.9.0",
"jsii-diff": "^1.9.0",
"jsii-pacmak": "^1.9.0",
"jsii-release": "^0.1.6",
"jsii-docgen": "^1.3.2"
},
"peerDependencies": {
"cdktf": "^0.0.15",
"constructs": "^3.0.0",
"@cdktf/provider-aws": "^0.0.16",
"@cdktf/provider-null": "^0.0.3"
},
"dependencies": {
"hashdirectory": "^0.1.0"
},
"bundledDependencies": [
"hashdirectory"
],
"engines": {
"node": ">= 10.17.0"
},
"license": "Apache-2.0",
"version": "0.0.1",
"types": "lib/index.d.ts",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
},
"stability": "stable",
"jsii": {
"outdir": "dist",
"targets": {},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
}
}