-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 908 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 908 Bytes
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
{
"name": "okcoin-api",
"version": "0.2.2",
"description": "NodeJS wrapper over the API of OKCoin, Chinese Bitcoin exchange",
"keywords": [
"OKCoin",
"api",
"btc",
"bitcoin",
"exchange",
"china"
],
"scripts": {
"test": "./node_modules/.bin/mocha -t 10000"
},
"repository": {
"type": "git",
"url": "https://github.com/etiennetatur/OKCoin-API"
},
"main": "okcoin.js",
"author": "Etienne TATUR (https://github.com/etiennetatur)",
"contributors": [
],
"license": "MIT",
"dependencies": {
"MD5": "^1.2.1",
"request": "^2.27.0",
"requestretry": "^1.2.2"
},
"devDependencies": {
"mocha": "*",
"sinon": "*",
"should": "*"
},
"engines": {
"node": ">=0.10"
},
"bugs": {
"url": "https://github.com/etiennetatur/OKCoin-API/issues",
"email": "etienne.tatur@gmail.com"
},
"readmeFilename": "README.md"
}