-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.59 KB
/
Copy pathpackage.json
File metadata and controls
150 lines (150 loc) · 4.59 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@listenfirst/lf-cli",
"description": "The ListenFirst API Command Line Interface",
"version": "1.5.7",
"author": "Mike Stanley",
"bin": {
"lf-cli": "./bin/run"
},
"bugs": "https://github.com/ListenFirstMedia/lf-cli/issues",
"dependencies": {
"@fast-csv/format": "^4.3.5",
"@iarna/toml": "^2.2.5",
"@oclif/core": "^1.1.1",
"@oclif/plugin-autocomplete": "^0.2.1",
"@oclif/plugin-commands": "^1.3.0",
"@oclif/plugin-help": "^3.3.1",
"@oclif/plugin-not-found": "^1.2.6",
"@oclif/plugin-update": "^1.5.0",
"@types/inquirer": "^6.5.0",
"@types/listr": "^0.14.4",
"@types/lodash": "^4.14.192",
"@types/node-fetch": "^2.6.3",
"cli-progress": "^3.12.0",
"cli-ux": "^6.0.9",
"csv": "6.0.4",
"fast-csv": "^4.3.6",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^2.6.9",
"toml": "^3.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.363.0",
"@aws-sdk/s3-request-presigner": "^3.306.0",
"@oclif/dev-cli": "^1.26.10",
"@types/cli-progress": "^3.11.0",
"@types/jest": "^28.1.8",
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"aws-sdk": "^2.1413.0",
"eslint": "^8.44.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-unicorn": "^48.0.0",
"globby": "^10.0.2",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lint-staged": "^10.5.4",
"node-notifier": "^10.0.1",
"prettier": "^2.8.7",
"ts-jest": "^29.1.1",
"ts-node": "^8.10.2",
"typescript": "4.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"LICENSE.md",
"README.md",
"listenfirst-logo-small.png",
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/ListenFirstMedia/lf-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "lf-cli",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands"
],
"topics": {
"auth": {
"description": "Authentication related commands"
},
"config": {
"description": "Manage lf-cli configuration profiles"
},
"datasets": {
"description": "Query the ListenFirst Data Dictionary"
},
"analytics": {
"description": "Produce and submit analytical queries"
},
"brand-views": {
"description": "Query available Brand Views"
},
"brand-view-sets": {
"description": "Query avaible Brand View Sets"
},
"bulk-tag-ingest": {
"description": "Ingest tags"
}
},
"update": {
"s3": {
"bucket": "dist.lfm",
"host": "https://dist.listenfirstmedia.com"
}
},
"macos": {
"identifier": "io.listenfirst.cli",
"sign": "Developer ID Installer: ListenFirst Media LLC."
}
},
"repository": "ListenFirstMedia/lf-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint --ext ts src/",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest src/",
"version": "oclif-dev readme && git add README.md",
"format": "prettier --write src/",
"format-check": "prettier --check src/",
"lint": "eslint --fix --ext ts src/",
"lint-check": "eslint --ext ts src/",
"compile": "npx tsc -b ./",
"prepare": "npx lint-staged"
},
"types": "lib/index.d.ts",
"lint-staged": {
"*.{ts,js}": [
"npx prettier --check",
"eslint --fix-dry-run --ext ts src"
],
"*{ts}": [
"bash -c npx tsc --noEmit"
]
},
"publishConfig": {
"access": "public"
}
}