-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "bestbuy-cli",
"description": "Download data from the Best Buy Catalog API in bulk from the command line",
"version": "1.1.1",
"author": "Dan Flettre <[email protected]>",
"bugs": {
"url": "https://github.com/BestBuyAPIs/bestbuy-cli/issues"
},
"dependencies": {
"JSONStream": "^1.3.1",
"bestbuy": "^2.1.2",
"cliclopts": "^1.1.1",
"fast-csv": "^2.4.0",
"log-update": "^2.1.0",
"minimist": "^1.2.0",
"pretty-ms": "^3.0.0",
"pump": "^1.0.2",
"stdout-stream": "^1.4.0",
"through2": "^2.0.3",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"concat-stream": "^1.6.0",
"gh-release": "^3.1.1",
"pkg": "^4.2.4",
"rimraf": "^2.6.2",
"standard": "^16.0.3",
"tap-spec": "^4.0.2",
"tape": "^4.8.0",
"tape-nock": "^1.6.0",
"to2": "^1.0.0"
},
"homepage": "https://github.com/BestBuyAPIs/bestbuy-cli",
"keywords": [
"api",
"bestbuy",
"bulk",
"catalog",
"cli",
"command",
"download",
"line",
"products"
],
"license": "MIT",
"main": "index.js",
"bin": {
"bestbuy": "./bin.js",
"bestbuy-cli": "./bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BestBuyAPIs/bestbuy-cli.git"
},
"scripts": {
"test": "standard && tape test/*.test.js | tap-spec",
"release": "pkg . --out-path dist && gh-release --assets dist/bestbuy-cli-linux,dist/bestbuy-cli-macos,dist/bestbuy-cli-win.exe"
}
}