-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 771 Bytes
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
{
"name": "crypto-info",
"version": "0.0.5",
"description": "All crypto prices and convertions",
"repository": "git@github.com:praneshr/crypto-info.git",
"author": "Pranesh Ravi <praneshpranesh@gmail.com>",
"license": "MIT",
"private": false,
"preferGlobal": true,
"bin": "bin/index.js",
"scripts": {
"build": "babel src --out-dir bin",
"build:watch": "babel src --out-dir bin --watch",
"prepublish": "yarn build"
},
"dependencies": {
"args": "^3.0.8",
"axios": "^0.18.0",
"chalk": "^2.3.1",
"cli-table2": "^0.2.0",
"commander": "^2.14.1",
"cryptocurrencies": "^2.0.0",
"from-now": "^1.0.2",
"ora": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
}
}