forked from ExodusMovement/cryptocompare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 805 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
{
"name": "cryptocompare",
"description": "CryptoCompare JavaScript API",
"version": "0.4.0",
"author": "JP Richardson <[email protected]>",
"bugs": {
"url": "https://github.com/exodusmovement/cryptocompare/issues"
},
"devDependencies": {
"node-fetch": "^1.5.3",
"standard": "9.x",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"homepage": "https://github.com/exodusmovement/cryptocompare",
"keywords": [
"api",
"bitcoin",
"cryptocurrency",
"ethereum",
"price"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/exodusmovement/cryptocompare.git"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js | tap-spec"
}
}