-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "strategy-cli",
"version": "0.1.0",
"description": "cli to run strategy",
"main": "./lib/index.js",
"bin": {
"strategy-cli": "./lib/cli.js"
},
"types": "./lib/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --declaration",
"prepublish": "npm run build",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^24.0.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.1"
},
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/mongodb": "^3.1.21",
"@types/node": "^11.10.5",
"@types/ramda": "^0.25.51",
"minimist": "^1.2.0",
"mongodb": "^3.1.13",
"ramda": "^0.26.1",
"strategy-runner": "file:../strategy-runner",
"technical-indicator": "^0.4.1"
},
"peerDependencies": {},
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenQuantJS/strategy-cli.git"
},
"homepage": "https://github.com/OpenQuantJS/strategy-cli",
"bugs": "https://github.com/OpenQuantJS/strategy-cli/issues"
}