forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "aws-cdk",
"version": "1.15.0",
"private": true,
"pkglint": {
"include": "dependencies/node-version"
},
"scripts": {
"pkglint": "lerna --scope pkglint run build && lerna run pkglint",
"build-all": "tsc -b"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^8.10.56",
"@types/nodeunit": "^0.0.30",
"conventional-changelog-cli": "^2.0.25",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"jsii-diff": "^0.20.0",
"jsii-pacmak": "^0.20.0",
"lerna": "^3.18.3",
"nodeunit": "^0.11.3",
"nyc": "^14.1.1",
"standard-version": "^7.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "~3.6.4"
},
"repository": {
"type": "git",
"url": "git://github.com/aws/aws-cdk"
},
"standard-version": {
"releaseCommitMessageFormat": "v{{currentTag}}",
"scripts": {
"prebump": "echo $(node -pe \"require('./lerna.json').version\")",
"precommit": "git add ."
}
},
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"workspaces": {
"packages": [
"packages/*",
"packages/@aws-cdk/*",
"packages/@aws-cdk/*/lambda-packages/*",
"tools/*"
],
"nohoist": [
"**/jszip",
"**/jszip/**",
"@aws-cdk/assets/minimatch",
"@aws-cdk/assets/minimatch/**",
"@aws-cdk/cx-api/semver",
"@aws-cdk/cx-api/semver/**"
]
}
}