-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
162 lines (162 loc) · 3.94 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
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
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@box/cli",
"description": "Official command line interface for the Box API",
"keywords": [
"box",
"cli",
"platform",
"api",
"upload",
"download"
],
"version": "4.0.0",
"author": "Box <[email protected]>",
"license": "Apache-2.0",
"main": "src/index.js",
"bin": {
"box": "./bin/run"
},
"repository": {
"type": "git",
"url": "https://github.com/box/boxcli.git"
},
"bugs": "https://github.com/box/boxcli/issues",
"dependencies": {
"@discoveryjs/json-ext": "^0.5.7",
"@oclif/core": "^4.0.33",
"@oclif/plugin-autocomplete": "^3.2.11",
"@oclif/plugin-help": "^6.2.18",
"@oclif/plugin-not-found": "^3.2.29",
"@oclif/plugin-version": "^2.2.16",
"archiver": "^3.0.0",
"box-node-sdk": "^3.7.0",
"box-typescript-sdk-gen": "^1.11.0",
"chalk": "^2.4.1",
"cli-progress": "^2.1.0",
"csv": "^6.3.3",
"date-fns": "^1.29.0",
"debug": "^4.4.0",
"express": "^4.21.1",
"fs-extra": "^10.1.0",
"inquirer": "^6.2.0",
"js-yaml": "^3.13.1",
"keychain": "^1.4.0",
"keytar": "^7.9.0",
"lodash": "^4.17.13",
"mkdirp": "^3.0.1",
"nanoid": "^3.3.8",
"open": "^10.1.0",
"ora": "^5.4.1",
"p-event": "^2.3.1"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3.2.15",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^5.0.0",
"generate-license-file": "^3.6.0",
"jsonwebtoken": "^9.0.2",
"leche": "^2.3.0",
"mocha": "^10.8.2",
"mockery": "^2.1.0",
"nock": "^13.5.6",
"nyc": "^17.1.0",
"oclif": "^4.16.0",
"sinon": "^19.0.2",
"standard-version": "^9.5.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"oclif": {
"commands": "./src/commands",
"bin": "box",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"hooks": {
"init": [
"./src/hooks/init/verbose"
]
},
"macos": {
"identifier": "com.box.cli"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete",
"@oclif/plugin-version"
],
"topics": {
"autocomplete": {
"description": "Display autocomplete installation instructions"
},
"collaborations": {
"description": "Manage collaborations"
},
"comments": {
"description": "Manage comments on files"
},
"configure": {
"description": "Configure the Box CLI"
},
"configure:environments": {
"description": "Manage your CLI environments"
},
"files": {
"description": "Manage files"
},
"folders": {
"description": "Manage folders"
},
"help": {
"description": "Display help for the Box CLI"
},
"shared-links": {
"description": "Manage shared links"
},
"tasks": {
"description": "Manage tasks"
},
"web-links": {
"description": "Manage web links"
}
}
},
"scripts": {
"test": "nyc mocha \"test/**/*.test.js\"",
"posttest": "npm run lint",
"lint": "eslint --fix ./src ./test",
"clean": "find src/ -type d -name 'dist' -exec rm -rf {} +",
"updatemd": "find docs -type f -name '*.md' -exec sed -i '' 's/\\.ts/\\.js/g' {} +",
"prepack": "npm run license && oclif manifest && oclif readme --multi && npm run updatemd && npm shrinkwrap && git checkout origin/main -- package-lock.json",
"postpack": "rm -f oclif.manifest.json && rm -f npm-shrinkwrap.json",
"version": "oclif readme --multi && npm run updatemd && git add README.md && git add docs",
"build": "oclif pack:macos && rm -rf tmp/ && oclif pack:win && rm -rf tmp/",
"changelog": "node node_modules/standard-version/bin/cli.js --skip.commit --skip.push --skip.tag --dry-run",
"license": "generate-license-file --overwrite"
},
"overrides": {
"leche": {
"mocha": ">=1.18"
}
}
}