-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.96 KB
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
{
"name": "serverless-cdktf",
"version": "0.0.4",
"description": "Serverless CDKTF Plugin",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"bin": {
"sls-cdktf": "bin/sls-cdktf"
},
"license": "MIT",
"author": "Xanthous Tech Developers <hi@x-tech.io>",
"contributors": [
{
"name": "Simon Liang",
"email": "simon@x-tech.io"
},
{
"name": "Alex Zhao",
"email": "alexzhao@x-tech.io"
}
],
"scripts": {
"cdktf:get": "cdktf get",
"clean": "rimraf lib",
"prebuild": "npm run cdktf:get",
"build": "npm run compile",
"compile": "tsc",
"clean:build": "npm run clean && npm run build",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint --fix",
"format": "prettier --write",
"dev": "npm run build && npm run start",
"start": "node .",
"prepublish": "npm run clean:build",
"postinstall": "patch-package"
},
"dependencies": {
"cdktf": "^0.0.17",
"cdktf-cli": "^0.0.17",
"constructs": "^3.0.4",
"debug": "^4.1.1",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20",
"patch-package": "^6.2.2",
"yargs": "^15.4.1"
},
"peerDependencies": {
"serverless": ">=1.78 <2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/lodash": "^4.14.161",
"@types/node": "^14.0.27",
"@types/serverless": "^1.72.5",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"serverless": "^1.78.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.7"
},
"volta": {
"node": "12.16.3",
"yarn": "1.22.4"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint:fix",
"npm run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged npm run build"
}
}
}