-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.15 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
{
"name": "bump-cdk",
"version": "0.1.8",
"description": "Easily manage AWS CDK Dependencies",
"homepage": "https://github.com/cdk-tools/bump-cdk#readme",
"bugs": {
"url": "https://github.com/cdk-tools/bump-cdk/issues",
"email": "issues@cdk.tools"
},
"license": "MIT",
"author": {
"name": "Joe Snell",
"email": "joepsnell@gmail.com",
"url": "https://github.com/wulfmann"
},
"keywords": [
"aws",
"aws-cdk",
"cdk",
"version-management",
"cli",
"tool"
],
"scripts": {
"dev": "tsc -w",
"build:ts": "tsc",
"build:cli": "chmod +x bin/bump-cdk",
"build": "yarn build:ts && yarn build:cli",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "https://github.com/cdk-tools/bump-cdk"
},
"bin": {
"bump-cdk": "./bin/bump-cdk"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"arg": "^4.1.3",
"chalk": "^4.1.0",
"package-json": "^6.5.0"
},
"devDependencies": {
"prettier": "^2.0.5",
"typescript": "^3.9.6"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}