-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 930 Bytes
/
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
{
"name": "strategy-runner",
"version": "1.0.0",
"description": "stock strategy runner",
"main": "./lib/index.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": "^24.0.0",
"typescript": "^3.2.1"
},
"dependencies": {
"@types/node": "^11.10.5"
},
"peerDependencies": {},
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenQuantJS/strategy-runner.git<Paste>"
},
"homepage": "https://github.com/OpenQuantJS/strategy-runner",
"bugs": "https://github.com/OpenQuantJS/strategy-runner/issues"
}