-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.49 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
{
"name": "coffee-crypto-cli",
"version": "2.0.0",
"description": "Cryptocurrency CLI price tool",
"main": "dist/index.js",
"author": "Gabe Olesen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zidious/crypto-cli"
},
"bin": {
"crypto": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "mocha 'src/*.test.ts'",
"lint": "eslint --fix",
"prepare": "husky install",
"precommit": "lint-staged"
},
"engines": {
"node": ">=14"
},
"type": "module",
"dependencies": {
"@crypto-coffee/coingecko-api": "^1.2.0",
"@json2csv/node": "^7.0.5",
"chalk": "^5.3.0",
"meow": "^11.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"execa": "^8.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"rimraf": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.md": "prettier --write"
},
"keywords": [
"bitcoin",
"cryptocurrency",
"crypto",
"crypto cli",
"coingecko",
"cli",
"cli tool",
"price",
"price tool"
]
}