-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (116 loc) · 3.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@sif/cli",
"version": "1.0.0",
"description": "CLI to interact with Sustainability Insight Framework",
"author": "William Sia <[email protected]>",
"bin": {
"sif": "./bin/run"
},
"homepage": "https://github.com/aws-solutions-library-sample/sif-cli",
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": "aws-solutions-library-sample/sif-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@aws-sdk/client-cloudformation": "3.462.0",
"@aws-sdk/client-ssm": "3.462.0",
"@aws-sdk/client-sts": "3.462.0",
"@aws-sdk/credential-provider-node": "3.460.0",
"@inquirer/prompts": "^3.3.0",
"@inquirer/select": "^1.3.0",
"@microsoft/rush": "^5.82.1",
"@oclif/core": "3.0.0",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^4.1.8",
"@types/listr": "^0.14.9",
"compare-versions": "6.1.0",
"conf": "10.2.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"enquirer": "^2.4.1",
"listr2": "^6.6.1",
"octokit": "3.1.0",
"promisify": "^0.0.3",
"shelljs": "^0.8.5",
"simple-git": "^3.19.1",
"table": "^6.8.1",
"ulid": "2.3.0"
},
"devDependencies": {
"@oclif/test": "^2.4.4",
"@rushstack/eslint-config": "3.3.2",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.40",
"@types/shelljs": "^0.8.12",
"chai": "^4",
"esbuild": "0.19.04",
"eslint": "8.47.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"mocha": "^9",
"oclif": "^3.16.0",
"prettier": "3.0.2",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^4.9.5"
},
"overrides": {
"semver": "~7.5.2",
"got": "^11.8.6"
},
"oclif": {
"bin": "sif",
"dirname": "sif",
"helpClass": "./dist/utils/help",
"commands": "./dist/commands",
"macos": {
"identifier": "com.sif.cli"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"core": {
"description": "Contains list of sub-commands to describe/list/build SIF releases"
},
"instance": {
"description": "Contains list of sub-commands to interact with SIF instance"
},
"environment": {
"description": "Contains list of sub-commands to interact with SIF environment"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b && shx cp .env dist/.env",
"package:macos": "npm run build && npx oclif pack macos",
"package:win": "npm run build && npx oclif pack win",
"package:debian": "npm run build && npx oclif pack deb",
"package:tarballs": "npm run build && npx oclif pack tarballs",
"lint": "npx eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=16.0.0"
},
"bugs": "https://github.com/aws-solutions-library-sample/sif-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}