forked from chriscoombs/quickstart-shi-crpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "quickstart-shi-crpm",
"version": "1.0.0",
"description": "AWS Quick Start to create an infrastructure CI/CD pipeline that watches itself, along with an IDE with CRPM pre-installed to edit the infrastructure code",
"keywords": [
"crpm"
],
"homepage": "https://github.com/aws-quickstart/quickstart-shi-crpm",
"license": "Apache-2.0",
"author": {
"name": "SHI International Corp.",
"url": "https://www.shi.com",
"organization": true
},
"repository": {
"type": "git",
"url": "https://github.com/aws-quickstart/quickstart-shi-crpm.git"
},
"bin": {
"quickstart": "bin/app.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"update-dependencies": "ncu -u"
},
"devDependencies": {
"@aws-cdk/assert": "~1.97.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"jest": "^26.6.3",
"npm-check-updates": "^11.4.1",
"ts-jest": "^26.5.4",
"aws-cdk": "~1.97.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@aws-cdk/core": "~1.97.0",
"source-map-support": "^0.5.19",
"@types/js-yaml": "^4.0.0",
"crpm": "~2.5.0",
"js-yaml": "^4.0.0"
}
}