-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 953 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
{
"name": "btc-value",
"version": "6.0.0",
"description": "Get the current Bitcoin value",
"scripts": {
"test": "ava --serial && tsd",
"lint": "eslint .",
"coverage": "nyc ava --serial && nyc report --reporter=json"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/knutkirkhorn/btc-value.git"
},
"keywords": [
"bitcoin",
"btc",
"value",
"cryptocurrency"
],
"author": "Knut Kirkhorn",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14.16"
},
"license": "MIT",
"dependencies": {
"got": "^12.6.0",
"package-user-agent": "^1.0.1"
},
"devDependencies": {
"ava": "^5.2.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^46.0.0",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"tsd": "^0.26.1"
}
}