forked from cdklabs/aws-delivlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
{
"name": "aws-delivlib",
"version": "7.1.21",
"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": {},
"devDependencies": {
"@monocdk-experiment/assert": "1.31.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.7.6",
"aws-cdk": "1.37.0",
"jest": "^26.0.1",
"jest-create-mock-instance": "^1.1.0",
"monocdk-experiment": "1.28.0",
"standard-version": "^7.1.0",
"tslint": "^6.1.2",
"typescript": "~3.8.2"
},
"peerDependencies": {
"monocdk-experiment": "^1.26.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"js"
]
}
}