-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "@ssh.com/c3",
"version": "0.7.0",
"description": "Compliant Cloud Components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest --no-cache --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"clean": "rm lib/*.js lib/*.d.ts && rm -Rf node_modules"
},
"author": {
"name": "SSH Communications Security Corp",
"url": "https://ssh.com",
"organization": true
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SSHcom/c3.git"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "*",
"@aws-cdk/aws-cloudformation": "*",
"@aws-cdk/aws-codebuild": "*",
"@aws-cdk/aws-dynamodb": "*",
"@aws-cdk/aws-ec2": "*",
"@aws-cdk/aws-efs": "*",
"@aws-cdk/aws-iam": "*",
"@aws-cdk/aws-kms": "*",
"@aws-cdk/aws-lambda": "*",
"@aws-cdk/aws-logs": "*",
"@aws-cdk/aws-rds": "*",
"@aws-cdk/aws-s3": "*",
"@aws-cdk/aws-secretsmanager": "*",
"@aws-cdk/core": "*",
"@types/node": "14.14.31"
},
"devDependencies": {
"@aws-cdk/assert": "*",
"@types/jest": "^26.0.20",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.2"
}
}