-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·48 lines (48 loc) · 1012 Bytes
/
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
{
"name": "@coinpaprika/api-nodejs-client",
"version": "2.0.0",
"description": "This library provides convenient way to use Coinpaprika.com API in NodeJS",
"license": "MIT",
"repository": {
"url": "https://github.com/coinpaprika/coinpaprika-api-nodejs-client",
"type": "git"
},
"homepage": "https://api.coinpaprika.com/",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"test:cov": "npm run test -- --coverage",
"lint": "standard --fix ./*.js",
"start": "npm run test",
"pretest": "npm run lint"
},
"jest": {
"verbose": true
},
"author": "coinpaprika.com",
"devDependencies": {
"documentation": "^14.0.1",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"standard": "^17.0.0"
},
"dependencies": {
"node-fetch": "^2.6.11",
"qs": "^6.11.1"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [
"api",
"client",
"coinpaprika",
"bitcoin",
"cryptocurrency"
]
}