-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 909 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
{
"name": "coin-rates",
"version": "1.2.0",
"description": "Fetch currency exchange rate for coin/fiat currency pairs",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "./node_modules/.bin/mocha --recursive ./test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bleskomat/coin-rates-node.git"
},
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"contributors": [
{
"name": "Carlos Garcia Ortiz",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bleskomat/coin-rates-node/issues"
},
"homepage": "https://github.com/bleskomat/coin-rates-node#readme",
"dependencies": {
"async": "3.2.4"
},
"devDependencies": {
"mocha": "10.2.0"
}
}