forked from cdklabs/aws-delivlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.95 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
{
"name": "aws-delivlib",
"version": "8.1.10",
"homepage": "https://github.com/awslabs/aws-delivlib",
"description": "A fabulous library for defining continuous pipelines for building, testing and releasing code libraries.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "yarn build:assets && tsc && tslint --fix --project .",
"build:assets": "yarn build:assets:custom-resource-handlers && yarn build:assets:lambda-handlers",
"build:assets:custom-resource-handlers": "/bin/bash ./build-custom-resource-handlers.sh",
"build:assets:lambda-handlers": "/bin/bash ./build-lambda-handlers.sh",
"package": "/bin/bash ./package.sh",
"watch": "tsc -w",
"test": "/bin/bash ./test.sh",
"cdk": "cdk",
"bump": "standard-version",
"pipeline-update": "yarn build && cdk -a pipeline/delivlib.js deploy",
"pipeline-diff": "yarn build && cdk -a pipeline/delivlib.js diff"
},
"keywords": [
"aws-cdk",
"continuous-delivery",
"continuous-integration",
"ci-cd"
],
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aws-delivlib.git"
},
"license": "Apache-2.0",
"dependencies": {
"changelog-parser": "^2.8.0"
},
"devDependencies": {
"@monocdk-experiment/assert": "1.50.0",
"@types/jest": "^26.0.8",
"@types/node": "^13.7.6",
"aws-cdk": "1.56.0",
"jest": "^26.2.2",
"jest-create-mock-instance": "^1.1.0",
"monocdk-experiment": "1.51.0",
"standard-version": "^8.0.2",
"tslint": "^6.1.3",
"typescript": "~3.8.2",
"constructs": "^3.0.4"
},
"peerDependencies": {
"monocdk-experiment": "^1.49.0",
"constructs": "^3.0.4"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"js"
]
}
}