-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.53 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
{
"name": "cld-cli",
"version": "0.3.15",
"description": "cld CLI - for the cld packages",
"author": "Mark C Allen @markcallen",
"bin": {
"cld": "./bin/run"
},
"homepage": "https://github.com/markcallen/cld-cli",
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": "markcallen/cld-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1.26.2",
"@oclif/plugin-help": "^5.2.11",
"@oclif/plugin-plugins": "^2.4.7",
"aws-sdk": "^2.1409.0",
"template-file": "^6.0.1"
},
"devDependencies": {
"@oclif/test": "2.3.26",
"@types/chai": "^4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"chai": "^4",
"eslint": "8.44.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^46.0.1",
"husky": "^8.0.3",
"lint-staged": "13.2.3",
"mocha": "^10",
"oclif": "^3",
"prettier": "^2.8.8",
"release-it": "15.11.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "cld",
"dirname": "cld",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
},
"aws": {
"description": "quick aws commands"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"prepack": "yarn build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,js --fix",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"release": "release-it",
"prepare": "husky install"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/markcallen/cld-cli/issues",
"keywords": [
"oclif",
"cld"
],
"types": "dist/index.d.ts",
"lint-staged": {
"*.{js,ts}": [
"prettier --write .",
"eslint --fix . "
],
"*.{json,md,yaml}": [
"prettier --write ."
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}