This repository was archived by the owner on Sep 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.26 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
{
"name": "template-configuration",
"version": "1.0.0",
"description": "CloudFormation + CodePipeline Template Configuration For CLI Tools",
"main": "src/index.js",
"bin": {
"tc": "src/bin.js",
"template-configuration": "src/bin.js"
},
"scripts": {
"lint": "standard",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mokele/template-configuration.git"
},
"files": [
"src"
],
"keywords": [
"aws",
"aws-cloudformation",
"aws-sam",
"aws-sam-cli",
"aws-cli",
"aws-rain",
"aws-rain-cli",
"template-configuration",
"codepipeline"
],
"author": "Steven Gravell <steve@mokele.co.uk>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mokele/template-configuration/issues"
},
"homepage": "https://github.com/mokele/template-configuration#readme",
"devDependencies": {
"jest": "^26.0.1",
"semantic-release": "^17.2.2",
"standard": "^16.0.1"
},
"standard": {
"env": "jest"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}