-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 941 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
{
"name": "kiwicoin",
"description": "Kiwi-Coin API client for Node.js",
"version": "1.0.0",
"author": "William Comnisky",
"license": "MIT",
"homepage": "https://wcomnisky.github.io/node-kiwicoin/",
"keywords": [
"bitcoin",
"kiwi-coin",
"exchange",
"market"
],
"dependencies": {
"request": "^2.88.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wcomnisky/node-kiwicoin.git"
},
"main": "kiwicoin.js",
"engines": {
"node": ">=8.0"
},
"bugs": {
"url": "https://github.com/wcomnisky/node-kiwicoin/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0"
},
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage-html": "nyc --reporter=html --reporter=text mocha"
}
}