-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "coinalist",
"keywords": [
"coin",
"token",
"crypto",
"cryptocurrency",
"fiat",
"ico",
"sto",
"exchange",
"trade",
"pump",
"dump"
],
"version": "0.0.5",
"description": "High level crypto exchange agnostyc framework for real time monitoring",
"author": "Andrei Vasin (aka Savva) <andreid.31415@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andrenerd/coinalist.git"
},
"bugs": {
"url": "https://github.com/andrenerd/coinalist/issues"
},
"homepage": "https://github.com/andrenerd/coinalist#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": {
"run": [
"precommit"
],
"silent": true
},
"dependencies": {
"autobahn": "^17.5.2",
"request": "^2.88.0",
"rxjs": "~6.0.0",
"ws": "^3.2.0"
},
"devDependencies": {
"@types/node": "^8.0.7",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-typescript": "^0.12.0",
"pre-commit": "^1.2.2",
"typescript": "^2.8.3",
"typescript-eslint-parser": "^15.0.0"
}
}