-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
126 lines (126 loc) · 2.93 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@coinranking/exchanges",
"version": "3.118.0",
"description": "An open source JavaScript library for fetching tickers from cryptocurrency exchanges",
"main": "lib/exchanges.js",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/coinranking/exchanges.git"
},
"readme": "README.md",
"scripts": {
"cm": "git-cz",
"lint": "npx eslint --ext .js --ignore-path .eslintignore .",
"test": "npx jest --forceExit",
"docs": "jsdoc2md models/*.js lib/*.js > DOCUMENTATION.md",
"semantic-release": "semantic-release"
},
"bugs": {
"url": "https://github.com/coinranking/exchanges/issues"
},
"homepage": "https://coinranking.com",
"keywords": [
"cryptocurrencies",
"cryptocurrency",
"library",
"crypto",
"altcoin",
"bitcoin",
"ethereum",
"coin",
"exchanges",
"decentralized exchanges",
"DEX",
"markets",
"tickers",
"prices",
"trading",
"volume",
"binance",
"coinbase",
"bitfinex",
"kraken",
"open",
"high",
"low",
"close",
"OHLC",
"coinranking"
],
"author": "Coinranking B.V.",
"license": "MIT",
"dependencies": {
"cloudscraper": "^4.6.0",
"commander": "^11.1.0",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"nock": "^13.5.4",
"semantic-release": "^23.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"coveragePathIgnorePatterns": [
"/tests/helpers/"
],
"coverageDirectory": "./coverage/",
"coverageReporters": [
"json",
"lcov",
"clover"
],
"collectCoverage": true
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"DOCUMENTATION.md",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
}
]
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test"
}
}
}