forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1005 Bytes
/
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
{
"name": "pkgtools",
"private": true,
"version": "0.22.0",
"description": "Tools for generating cross-package artifacts",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aws-cdk.git"
},
"bin": {
"cdk-version": "bin/cdk-version",
"find-jsii-packages": "bin/find-jsii-packages"
},
"scripts": {
"build": "cdk-build",
"watch": "cdk-watch",
"lint": "cdk-lint",
"pkglint": "pkglint -f",
"test": "cdk-test"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"license": "Apache-2.0",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/yargs": "^8.0.3",
"cdk-build-tools": "^0.22.0",
"pkglint": "^0.22.0"
},
"dependencies": {
"fs-extra": "^7.0.0",
"yargs": "^9.0.1"
},
"keywords": [
"aws",
"cdk"
],
"homepage": "https://github.com/awslabs/aws-cdk",
"engines": {
"node": ">= 8.10.0"
}
}