-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
150 lines (150 loc) · 3.52 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
{
"name": "@box/cli",
"description": "Official command line interface for the Box API",
"keywords": [
"box",
"cli",
"platform",
"api",
"upload",
"download"
],
"version": "3.15.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/command": "^1.5.5",
"@oclif/config": "^1.7.6",
"@oclif/plugin-autocomplete": "^0.1.0",
"@oclif/plugin-help": "^2.2.1",
"@oclif/plugin-not-found": "^1.2.0",
"archiver": "^3.0.0",
"box-node-sdk": "^3.7.0",
"chalk": "^2.4.1",
"cli-progress": "^2.1.0",
"csv": "^6.3.3",
"date-fns": "^1.29.0",
"debug": "^4.3.4",
"express": "^4.17.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": "^1.0.4",
"nanoid": "^3.3.1",
"open": "^8.0.4",
"ora": "^5.4.1",
"p-event": "^2.3.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.19.5",
"@oclif/test": "^1.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.3.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-unicorn": "^5.0.0",
"jsonwebtoken": "^8.3.0",
"leche": "^2.2.3",
"mocha": "^10.0.0",
"mockery": "^2.1.0",
"nock": "^10.0.0",
"nyc": "^15.1.0",
"pkg": "^5.5.2",
"sinon": "^15.0.1",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"oclif": {
"commands": "./src/commands",
"bin": "box",
"hooks": {
"init": [
"./src/hooks/init/verbose"
]
},
"macos": {
"identifier": "com.box.cli"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
],
"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"
}
}
},
"pkg": {
"scripts": "./src/**/*.js"
},
"scripts": {
"test": "nyc mocha \"test/**/*.test.js\"",
"posttest": "npm run lint",
"lint": "eslint --fix ./src ./test",
"prepack": "oclif-dev manifest && oclif-dev readme --multi && npm shrinkwrap && git checkout origin/main -- package-lock.json",
"postpack": "rm -f oclif.manifest.json && rm -f npm-shrinkwrap.json",
"version": "oclif-dev readme --multi && git add README.md && git add docs",
"build": "oclif-dev pack:macos && rm -rf tmp/ && oclif-dev pack:win && rm -rf tmp/ && npm run binaries",
"binaries": "pkg --targets node12-macos-x64,node12-win-x64,node12-linux-x64 --out-path ./dist .",
"changelog": "node node_modules/standard-version/bin/cli.js --skip.commit --skip.push --skip.tag --dry-run"
},
"overrides": {
"leche": {
"mocha": ">=1.18"
}
}
}