forked from bitrinjani/r2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.37 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
{
"name": "r2",
"version": "2.2.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"prestart": "rimraf dist && tsc && cpy src/config.json dist ",
"start": "node ./dist | node ./dist/transport",
"test": "npm run cov && cat ./coverage/lcov.info | coveralls",
"jest": "jest --runInBand",
"cov": "jest --runInBand --coverage",
"clearPairs": "ts-node ./tools/clearPairs.ts",
"getBalance": "ts-node ./tools/getBalance.ts",
"closeCcPosition": "ts-node ./tools/closeCcPosition.ts",
"closeBfPosition": "ts-node ./tools/closeBfPosition.ts",
"closeQuPosition": "ts-node ./tools/closeQuPosition.ts",
"closeAll": "npm run closeCcPosition && npm run closeBfPosition && npm run closeQuPosition && npm run clearPairs && npm run getBalance"
},
"dependencies": {
"@bitr/castable": "^1.0.1",
"@bitr/chronodb": "^1.0.2",
"chalk": "^2.3.0",
"date-fns": "^1.28.5",
"decimal.js": "^7.3.0",
"fast-json-parse": "^1.0.3",
"i18next": "^10.0.1",
"inversify": "^4.3.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"node-fetch": "^1.7.3",
"pino": "^4.10.2",
"reflect-metadata": "^0.1.10",
"split2": "^2.2.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/decimal.js": "^0.0.31",
"@types/i18next": "^8.4.2",
"@types/jest": "^21.1.4",
"@types/jsonwebtoken": "^7.2.3",
"@types/lodash": "^4.14.86",
"@types/nock": "^8.2.1",
"@types/node": "^8.0.53",
"@types/node-fetch": "^1.6.7",
"@types/pino": "^4.7.0",
"@types/split2": "^2.1.6",
"@types/uuid": "^3.4.2",
"coveralls": "^3.0.0",
"cpy-cli": "^1.0.1",
"jest": "^21.0.0",
"nock": "^9.0.24",
"rimraf": "^2.6.2",
"ts-jest": "^21.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "2.6.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"mapCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!src/index.ts",
"!src/transport/index.ts",
"!**/__tests__/**",
"!**/node_modules/**",
"!**/vendor/**",
"!tools/**"
]
}
}