-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
{
"name": "@enfo/aws-cdkompliance",
"version": "1.1.0",
"description": "Tagging and compliant resources using the CDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "Enfo COPS",
"email": "cops-aws@enfogroup.com"
},
"license": "MIT",
"repository": {
"url": "https://github.com/enfogroup/aws-cdk-compliance.git"
},
"keywords": [
"aws",
"cdk",
"compliance",
"awscdk",
"apn",
"msp"
],
"scripts": {
"prepublishOnly": "npx pinst --disable",
"postpublish": "npx pinst --enable",
"_postinstall": "npx husky install",
"build": "jsii",
"build:watch": "jsii --watch",
"package": "jsii-pacmak",
"clean": "rm -f lib/*.js lib/*.d.ts test/*.js test/*.d.ts",
"test": "npm run clean && jest --runInBand",
"lint": "npx eslint --ext .ts .",
"lint:fix": "npx eslint --fix --ext .ts ."
},
"devDependencies": {
"@aws-cdk/assert": "^2.27.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"aws-cdk": "^2.27.0",
"aws-cdk-lib": "2.27.0",
"aws-sdk": "^2.1148.0",
"constructs": "10.1.28",
"esbuild": "^0.14.42",
"eslint": "^8.4.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^27.4.3",
"jsii": "^1.59.0",
"jsii-pacmak": "^1.59.0",
"pinst": "^3.0.0",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
},
"peerDependencies": {
"aws-cdk-lib": "^2.27.0",
"constructs": "^10.1.28"
},
"stability": "stable",
"jsii": {
"outdir": ".dist",
"versionFormat": "full"
},
"dependencies": {
"aws-cdk-lib": "^2.27.0"
}
}