-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "node-api-cryptocom",
"version": "0.2.5",
"description": "Non-official implementation of Crypto.com's Exchange API's",
"main": "index.js",
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"scripts": {
"test": "jest --coverage --passWithNoTests --verbose",
"badges": "istanbul-badges-readme --colors=red:50,yellow:80",
"patch": "npm version patch --no-git-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexander-hagen/node-api-cryptocom.git"
},
"keywords": [
"cryptodotcom",
"tradebots.nl"
],
"author": "Alexander-hagen",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexander-hagen/node-api-cryptocom/issues"
},
"homepage": "https://github.com/alexander-hagen/node-api-cryptocom#readme",
"dependencies": {
"axios": "^1.11.0",
"limiter": "^3.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"dotenv": "^17.2.2",
"istanbul-badges-readme": "^1.9.0",
"jest": "^30.1.3"
}
}