-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.47 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.47 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
{
"name": "@oneblink/cli",
"description": "primary entry point for our CLI tools",
"version": "4.0.3",
"author": "OneBlink <developers@oneblink> (https://github.com/oneblink)",
"bin": {
"oneblink": "dist/bin/oneblink.js",
"civicplus": "dist/bin/civicplus.js",
"oneblink-us": "dist/bin/oneblink-us.js"
},
"bugs": {
"url": "https://github.com/oneblink/cli/issues"
},
"contributors": [
"Ron Waldon <jokeyrhyme@gmail.com> (https://github.com/jokeyrhyme)",
"Matt Carroll <matt.carroll139@gmail.com> (https://github.com/mymattcarroll)"
],
"dependencies": {
"@aws-sdk/client-s3": "3.981.0",
"@aws-sdk/lib-storage": "3.966.0",
"@hapi/boom": "^10.0.1",
"appdirectory": "^0.1.0",
"archiver": "^7.0.1",
"base64url": "^3.0.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"cors": "^2.8.5",
"execa": "^9.6.1",
"express": "^4.21.2",
"glob": "^13.0.0",
"inquirer": "^13.2.0",
"jsonwebtoken": "^9.0.3",
"load-json-file": "^7.0.1",
"log-symbols": "^7.0.1",
"meow": "^14.0.0",
"mime-types": "^3.0.2",
"minimist": "^1.2.8",
"morgan": "^1.10.1",
"object-merge": "^2.5.1",
"open": "^11.0.0",
"ora": "^9.0.0",
"package-engines-notifier": "^1.1.0",
"recursive-copy": "^2.0.14",
"s3-sync-client": "^4.3.1",
"temp": "^0.9.4",
"update-notifier": "^7.3.1",
"valid-url": "^1.0.9",
"write-json-file": "^7.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@microsoft/eslint-plugin-sdl": "^1.1.0",
"@oneblink/release-cli": "^4.0.0-beta.2",
"@oneblink/types": "github:oneblink/types",
"@types/archiver": "^7.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/inquirer": "^9.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime-types": "^3.0.1",
"@types/minimist": "^1.2.5",
"@types/morgan": "^1.9.10",
"@types/node": "^24.10.8",
"@types/object-merge": "^2.5.3",
"@types/temp": "^0.9.4",
"@types/update-notifier": "^6.0.8",
"@types/valid-url": "^1.0.7",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"fixpack": "^4.0.0",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"rollup": "^4.57.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"yauzl": "^3.2.0"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"exports": "./index.js",
"files": [
"dist",
"index.d.ts"
],
"homepage": "https://oneblink.github.io/cli",
"keywords": [],
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneblink/cli.git"
},
"scripts": {
"build": "npm run build:tsc && npm run build:api-handler",
"build:api-handler": "rollup --config ./rollup.api.config.js",
"build:tsc": "tsc --build",
"eslint": "eslint --fix --cache .",
"fixpack": "fixpack",
"prepare": "npm run build",
"pretest": "npm run eslint && npm run fixpack && npm run typescript && npm i -g .",
"release": "oneblink-release repository --no-name",
"test": "vitest run",
"types": "npm i -D github:oneblink/types",
"typescript": "tsc --noEmit"
},
"type": "module"
}