-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
85 lines (85 loc) · 2.41 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
{
"name": "grademark",
"version": "0.3.0",
"description": "Toolkit for algo trading and backtesting in JavaScript and TypeScript.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"setup": "npm install --save=false data-forge",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc",
"clean-build": "rm -rf build/* && tsc",
"bw": "npm run build:watch",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf build/* && tsc --watch",
"t": "npm run test",
"test": "nyc mocha --opts ./src/test/mocha.opts",
"tw": "npm run test:watch",
"test:watch": "mocha --watch --watch-extensions ts --opts ./src/test/mocha.opts",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grademark/grademark.git"
},
"keywords": [
"trading",
"backtest",
"backtesting",
"quantitative",
"algorithmic",
"JavaScript",
"TypeScript"
],
"author": "ashley@codecapers.com.au",
"license": "MIT",
"bugs": {
"url": "https://github.com/grademark/grademark/issues"
},
"homepage": "https://github.com/grademark/grademark#readme",
"dependencies": {
"CBuffer": "^2.2.0",
"dayjs": "^1.8.36",
"mathjs": "^5.10.3",
"mersennetwister": "^0.2.3",
"moment": "^2.28.0",
"typy": "^3.3.0"
},
"peerDependencies": {
"data-forge": "^1.8.11"
},
"devDependencies": {
"@data-forge/serialization": "^1.0.1",
"@types/chai": "4.1.6",
"@types/mathjs": "^4.4.5",
"@types/mocha": "5.2.5",
"@types/node": "10.11.4",
"chai": "4.2.0",
"data-forge-fs": "0.0.8",
"data-forge-indicators": "^0.2.5",
"mocha": "5.2.0",
"nyc": "^15.1.0",
"source-map-support": "0.5.9",
"sugar": "^2.0.6",
"ts-node": "7.0.1",
"typescript": "3.1.1"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/test/**/*",
"build/**/*",
"docs/**/*",
"coverage/**/*"
],
"reporter": [
"text-summary"
],
"all": true
}
}