-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"author": {
"name": "Rogier Schouten",
"url": "https://github.com/rogierschouten"
},
"bin": {
"coinbase": "./bin/coinbase"
},
"bugs": {
"url": "https://github.com/rogierschouten/coinbase-cli/issues"
},
"description": "Commandline utility for trading cryptocurrencies on Coinbase",
"engines": {
"node": ">=8.2.0"
},
"keywords": [
"coinbase",
"commandline",
"coinbase api",
"cryptocurrency",
"trade",
"bitcoin",
"litecoin",
"ethereum"
],
"license": "MIT",
"name": "coinbase-cli",
"repository": {
"type": "git",
"url": "https://github.com/rogierschouten/coinbase-cli.git"
},
"scripts": {
"all": "npm run clean && npm run build && npm run test",
"build": "tsc",
"clean": "rimraf ./out",
"test": "mocha ./out/test/test-*.js",
"watch": "tsc --watch",
"upgrade-dependencies": "node upgrade-dependencies.js"
},
"version": "1.2.2",
"dependencies": {
"coinbase": "^2.0.8",
"fs-extra": "^8.1.0",
"source-map-support": "^0.5.16",
"terminal-kit": "^1.31.4",
"yargs": "^14.2.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.28",
"@types/chai": "^4.2.4",
"@types/fs-extra": "^8.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.5",
"@types/sinon": "^7.5.0",
"@types/source-map-support": "^0.5.0",
"@types/yargs": "^13.0.3",
"bluebird": "^3.7.1",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}