-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "cplug",
"version": "1.0.13",
"description": "Crypto Plug is a CLI tool for getting cryptocurrency market data, news, and more!",
"main": "lib/index.js",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "npm i -g && cplug",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"patch": "npm run build && npm version patch && npm publish",
"minor": "npm run build && npm version minor && npm publish",
"major": "npm run build && npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmnavarr/cplug.git"
},
"keywords": [
"cryptocurrency",
"crypto-cli",
"crypto",
"crypto price",
"bitcoin",
"ethereum",
"btc",
"eth",
"price",
"market",
"data",
"news"
],
"author": "Malcolm Navarro (https://malcosaurus.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmnavarr/cplug/issues"
},
"homepage": "https://github.com/mmnavarr/cplug#readme",
"bin": {
"cplug": "lib/index.js"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-html": "^1.8.4",
"commander": "^7.1.0",
"console-table-printer": "^2.7.5",
"figlet": "^1.5.0",
"figures": "^3.2.0",
"got": "^11.8.1",
"markdown-it": "^12.0.4",
"marked": "^2.0.0",
"marked-terminal": "^4.1.0",
"nconf": "^0.11.2",
"numeral": "^2.0.6",
"ora": "^5.3.0",
"path": "^0.12.7",
"prompts": "^2.4.0"
},
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/markdown-it": "^12.0.1",
"@types/marked": "^1.2.2",
"@types/marked-terminal": "^3.1.1",
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.31",
"@types/node-emoji": "^1.8.1",
"@types/numeral": "^2.0.0",
"@types/prompts": "^2.0.9",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}