-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "ecsx",
"description": "Easily create, manage and deploy ECS based applications",
"version": "0.8.2",
"author": "Marc Qualie @marcqualie",
"bin": {
"ecsx": "./bin/run"
},
"bugs": "https://github.com/marcqualie/ecsx/issues",
"dependencies": {
"@aws-sdk/client-ecs": "^3.245.0",
"@oclif/core": "^1.23.1",
"@oclif/plugin-help": "^5.1.22",
"@oclif/plugin-plugins": "^2.1.12",
"cli-ux": "^6.0.9",
"dayjs": "^1.11.7",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"tslib": "^2.4.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^2.2",
"@types/chai": "^4.3.4",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/marcqualie/ecsx",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ecsx",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "marcqualie/ecsx",
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"dev": "./bin/dev",
"lint": "eslint src --ext .ts --config .eslintrc",
"postpack": "rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "tsc -b --clean && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha -r ts-node/register --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"postinstall": "tsc || echo done."
},
"types": "lib/index.d.ts"
}