-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "@enfo/cdk-webacl",
"version": "0.0.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "Opinionated wrapper around CDK L1 Construct WebAcl",
"author": {
"name": "Enfo COPS",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"url": "https://github.com/enfogroup/aws-cdk-waf.git"
},
"keywords": [
"aws",
"cdk",
"awscdk",
"waf",
"webacl"
],
"scripts": {
"build": "npx jsii",
"watch": "tsc -w",
"test": "jest",
"lint": "npx eslint --ext .ts .",
"lint:fix": "npx eslint --fix --ext .ts .",
"clean": "rm -rf lib/*.d.ts lib/*.d.ts.map lib/*.js test/*.d.ts test/*.d.ts.map test/*.js",
"postinstall": "npx husky install",
"prepublishOnly": "npx pinst --disable",
"postpublish": "npx pinst --enable"
},
"devDependencies": {
"@aws-cdk/assert": "^2.27.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/jest": "^27.5.0",
"@types/node": "10.17.27",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"aws-cdk": "^2.27.0",
"aws-cdk-lib": "2.27.0",
"constructs": "10.1.31",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"jsii": "^1.59.0",
"jsii-pacmak": "^1.59.0",
"pinst": "^3.0.0",
"ts-jest": "^27.1.4",
"typescript": "~3.9.7"
},
"peerDependencies": {
"aws-cdk-lib": "^2.27.0",
"constructs": "^10.1.31"
},
"stability": "stable",
"jsii": {
"outdir": ".dist",
"versionFormat": "full"
}
}