-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "financial-arbitration-data-collection-worker-binance",
"version": "1.1.0",
"description": "Exchange financial arbitration data collection worker - Binance",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"local": "NODE_CONFIG_DIR=./src/config NODE_ENV=development npm run migrate && node src/index.js",
"migrate": "NODE_CONFIG_DIR=./src/config NODE_ENV=development knex migrate:latest",
"test": "npm run lint && NODE_ENV=test nyc npm run test-mocha",
"test-mocha": "NODE_CONFIG_DIR=./src/config NODE_ENV=test mocha --harmony --exit ./src/**/*.spec.js",
"precommit": "npm run git-hook",
"prepush": "npm run git-hook",
"git-hook": "npm run lint -s && npm run test -s",
"lint": "standard --verbose | snazzy",
"fixcode": "standard --fix",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:LuanP/financial-arbitration-data-collection-worker-binance.git"
},
"keywords": [
"worker",
"data",
"collection",
"financial",
"arbitration",
"binance"
],
"author": "Luan Pablo",
"license": "CC-BY-NC-ND-4.0",
"bugs": {
"url": "https://github.com/LuanP/financial-arbitration-data-collection-worker-binance/issues"
},
"homepage": "https://github.com/LuanP/financial-arbitration-data-collection-worker-binance#README",
"dependencies": {
"axios": "^0.17.1",
"bunyan": "^1.8.12",
"config": "^1.29.4",
"knex": "^0.14.4",
"mysql2": "^1.5.2",
"ramda": "^0.25.0",
"sequelize": "^4.33.4",
"x-cryptocurrencies-normalizr": "^2.1.0"
},
"engines": {
"node": "8.11.3",
"npm": "6.1.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"test",
"beforeEach",
"after"
]
},
"nyc": {
"include": [
"src/**/*.js",
"src/**/**/*.js"
],
"require": [
"babel-register"
],
"exclude": [
"packages/**/*"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^8.2.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"dotenv": "^5.0.0",
"husky": "^0.14.3",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.0",
"should": "^13.2.1",
"sinon": "^4.3.0",
"snazzy": "^7.0.0",
"standard": "^11.0.0"
}
}