forked from box/boxcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 3.17 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
{
"name": "@box/cli",
"description": "Official command line interface for the Box API",
"keywords": [
"box",
"cli",
"platform",
"api",
"upload",
"download"
],
"version": "2.9.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": {
"@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": "^1.36.0",
"chalk": "^2.4.1",
"cli-progress": "^2.1.0",
"csv": "^3.1.0",
"date-fns": "^1.29.0",
"debug": "^4.1.0",
"fs-extra": "^7.0.0",
"inquirer": "^6.2.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.13",
"ora": "^3.0.0",
"p-event": "^2.3.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.19.5",
"@oclif/test": "^1.1.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"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": "^5.2.0",
"mockery": "^2.1.0",
"nock": "^10.0.0",
"np": "^5.1.3",
"nyc": "^12.0.2",
"pkg": "^4.3.7",
"sinon": "^6.1.5"
},
"engines": {
"node": ">=10.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/master -- 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 node10-macos-x64,node10-win-x64,node10-linux-x64 --out-path ./dist ."
}
}