-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 901 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 901 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": "crypto-backtest",
"version": "1.2.1-alpha",
"description": "Backtesting on market data imported from crypto exchange",
"repository": {
"type": "git",
"url": "https://github.com/cryptokupets/backtest.git"
},
"homepage": "https://github.com/cryptokupets/backtest",
"bugs": {
"url": "https://github.com/cryptokupets/backtest/issues"
},
"scripts": {
"build": "tsc",
"test": "mocha"
},
"keywords": [
"candles"
],
"author": {
"name": "Dmitry Fokin"
},
"engines": {
"node": ">= 12.16.1",
"npm": ">= 6.13.4"
},
"license": "MIT",
"main": "lib/index.js",
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/node": "^14.14.10",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"files": [
"lib/**/*"
],
"dependencies": {
"tulind": "^0.8.18"
}
}