-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.55 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
{
"name": "@vuga/barebone",
"private": false,
"version": "0.1.4",
"description": "NodeJS Backtesting Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"build": "rimraf dist && tsc",
"test-spec": "ava src/strategy.test.ts",
"test": "npm run test-spec",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/vugga/barebone.git"
},
"keywords": [
"algorithms",
"strategies",
"backtesting",
"quant",
"stocks"
],
"author": {
"name": "Ceddy Muhoza",
"email": "[email protected]",
"url": "http://ceddy.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vugga/barebone/issues"
},
"homepage": "https://github.com/vugga/barebone",
"devDependencies": {
"@types/lodash": "^4.14.144",
"@types/node": "^10.0.3",
"@types/source-map-support": "^0.4.0",
"ava": "^2.4.0",
"chalk": "^3.0.0",
"rimraf": "^2.5.4",
"ts-node": "^8.4.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=2.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"ava": {
"verbose": true,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}