-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
114 lines (114 loc) · 2.82 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
{
"name": "@coinranking/supplies",
"version": "2.72.0",
"description": "Cryptocurrency supply data library in JavaScript (open source) for getting total, circulating and max supplies from block explorers.",
"main": "lib/supplies.js",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/coinranking/supplies.git"
},
"bin": "./bin/supplies.js",
"readme": "README.md",
"scripts": {
"lint": "npx eslint --ext .js --ignore-path .eslintignore .",
"test": "npx jest --forceExit",
"cm": "git-cz",
"docs": "jsdoc2md lib/models/*.js > DOCUMENTATION.md",
"semantic-release": "semantic-release"
},
"bugs": {
"url": "https://github.com/coinranking/supplies/issues"
},
"homepage": "https://coinranking.com",
"keywords": [
"cryptocurrencies",
"cryptocurrency",
"crypto",
"altcoin",
"bitcoin",
"ethereum",
"coin",
"supplies",
"circulating supply",
"total supply",
"max supply",
"coinranking",
"blockchain"
],
"author": "Coinranking B.V.",
"license": "MIT",
"dependencies": {
"cloudscraper": "^4.6.0",
"commander": "^9.1.0",
"node-cache": "^5.1.2",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jsdoc": "^4.0.0",
"jsdoc-to-markdown": "^7.1.1",
"nock": "^13.2.4",
"semantic-release": "^19.0.2"
},
"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"
],
"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"
}
}
}