forked from rferro/plnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.19 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "plnx2",
"version": "0.2.2",
"description": "Forked and updated unofficial Poloniex API client",
"keywords": [
"poloniex",
"bitcoin",
"ethereum",
"btc",
"eth",
"ether",
"maid",
"api",
"push",
"trade",
"trading",
"trader",
"exchange",
"lisk"
],
"main": "lib",
"dependencies": {
"autobahn": "^17.5.2",
"debug": "^2.6.8",
"lodash": "^4.17.4",
"request": "^2.81.0",
"safe-buffer": "^5.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"scripts": {
"build": "babel src -d lib",
"standard": "standard | snazzy",
"standard:fix": "standard --fix | snazzy"
},
"author": "Ricardo Ferro <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flyingunicorn222/plnx2"
},
"bugs": {
"url": "https://github.com/flyingunicorn222/plnx2/issues"
},
"babel": {
"presets": [
"es2015"
]
},
"standard": {
"ignore": [
"lib"
]
},
"pre-commit": {
"run": [
"standard"
]
}
}