-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1015 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1015 Bytes
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
{
"name": "cloudpatrol",
"version": "0.0.3",
"description": "Policy as Code for the CDK",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint"
},
"files": [
"{lib,policies}/**/*.js",
"{lib,policies}/**/*.d.ts",
"Readme.md"
],
"author": "Sebastian Korfmann <sebastian@korfmann.net>",
"license": "Apache-2.0",
"engines": {
"node": ">= 0.10"
},
"dependencies": {},
"devDependencies": {
"@aws-cdk/aws-ec2": "1.32.2",
"@aws-cdk/aws-s3": "1.32.2",
"@aws-cdk/core": "1.32.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"constructs": "^2.0.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@aws-cdk/aws-ec2": "^1.0.0",
"@aws-cdk/aws-s3": "^1.0.0",
"@aws-cdk/core": "^1.0.0",
"constructs": "^2.0.1"
}
}