-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "cryptocurrencies",
"version": "8.0.1",
"description": "A JSON list of all the cryptocurrency symbols",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crypti/cryptocurrencies.git"
},
"type": "module",
"contributors": [
{
"name": "Michael Wuergler",
"email": "wuergler@gmail.com",
"url": "github.com/radiovisual"
},
{
"name": "Brandon Him",
"email": "brandonhim@live.com",
"url": "github.com/brh55"
}
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "npm run lint && ava",
"lint": "xo",
"lint:fix": "xo --fix",
"build": "rm -rf images && mkdir images && node build.js"
},
"files": [
"cryptocurrencies.json",
"index.js"
],
"keywords": [
"symbols",
"JSON",
"list",
"cryptocurrencies",
"cryptocurrency"
],
"xo": {
"esnext": true
},
"devDependencies": {
"ava": "^6.1.2",
"chalk": "^5.3.0",
"isomorphic-fetch": "^3.0.0",
"lodash.sortby": "^4.7.0",
"ora": "^8.0.1",
"sync-request": "^6.1.0",
"xo": "^0.58.0"
}
}