-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 942 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 942 Bytes
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
{
"name": "@exodus/prices",
"description": "Cryptocurrency prices",
"version": "0.0.2",
"author": "Exodus Movement, Inc.",
"bugs": {
"url": "https://github.com/exodusmovement/prices/"
},
"devDependencies": {
"node-fetch": "^2.1.2",
"standard": "^11.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
},
"engines": {
"node": ">=10.x",
"npm": ">=6.x"
},
"files": [
"src/index.js",
"src/util.js"
],
"keywords": [
"api",
"bitcoin",
"cryptocurrency",
"ethereum",
"price"
],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/exodusmovement/prices.git"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape src/__tests__/*.js | tap-spec"
},
"dependencies": {
"cryptocompare": "^0.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
}
}