forked from crypti/cryptocurrencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1019 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
49
50
{
"name": "cryptocurrencies",
"version": "7.0.0",
"description": "A JSON list of all the cryptocurrency symbols",
"license": "MIT",
"repository": "crypti/cryptocurrencies",
"contributors": [
{
"name": "Michael Wuergler",
"email": "[email protected]",
"url": "github.com/radiovisual"
},
{
"name": "Brandon Him",
"email": "[email protected]",
"url": "github.com/brh55"
}
],
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava",
"build": "rm -rf images && mkdir images && node build.js"
},
"files": [
"cryptocurrencies.json",
"index.js"
],
"keywords": [
"symbols",
"JSON",
"list",
"cryptocurrencies",
"cryptocurrency"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.15.2",
"chalk": "^2.3.0",
"isomorphic-fetch": "^2.2.1",
"lodash.sortby": "^4.7.0",
"ora": "^1.3.0",
"sync-request": "^4.1.0",
"xo": "^0.16.0"
},
"xo": {
"esnext": true
}
}