-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.68 KB
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
{
"name": "campfire-cli",
"version": "1.0.17",
"description": "Campfire CLI",
"keywords": [],
"homepage": "https://github.com/campfire-previews/campfire-cli/",
"bugs": "https://github.com/campfire-previews/campfire-cli/issues",
"license": "MIT",
"author": "Campfire",
"contributors": [
{
"name": "Allen Lee",
"email": "6207als@gmail.com"
},
{
"name": "Rachele Lang",
"email": "rachelelang7672@gmail.com"
},
{
"name": "Tess Lockey",
"email": "hellotesslockey@gmail.com"
},
{
"name": "Weston Ludeke",
"email": "westonludeke@gmail.com"
}
],
"type": "module",
"exports": "./lib/index.js",
"main": "",
"types": "lib/index.d.ts",
"bin": {
"campfire": "./bin/run.js"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json",
"/lambdas/*.zip",
"/templates",
"/public"
],
"scripts": {
"build": "shx rm -rf lib && tsc -b",
"lint": "eslint . --ext .ts",
"prepack": "npm run build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "npm run build",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "npm run lint",
"version": "oclif readme && git add README.md"
},
"oclif": {
"bin": "campfire",
"commands": "./lib/commands",
"dirname": "campfire",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"dependencies": {
"@aws-sdk/client-acm": "^3.540.0",
"@aws-sdk/client-cloudformation": "^3.533.0",
"@aws-sdk/client-ecs": "^3.533.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-secrets-manager": "^3.552.0",
"@aws-sdk/lib-storage": "^3.540.0",
"@oclif/core": "^3",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^4",
"campfire-cli": "^1.0.5",
"chalk": "^5.3.0",
"conf": "^12.0.0",
"express": "^4.18.3",
"fs": "^0.0.1-security",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.15",
"ora": "^8.0.1",
"path": "^0.12.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@oclif/command": "^1.8.36",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/uuid": "^9.0.8",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10",
"oclif": "^4.4.19",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
}
}