This repository has been archived by the owner on Jan 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 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
{
"name": "jesse-indicators",
"version": "0.4.1",
"description": "A Technical indicator library for TypeScript.",
"repository": {
"type": "git",
"url": "https://github.com/jesse-ai/indicators.git"
},
"bugs": {
"url": "https://github.com/jesse-ai/indicators/issues"
},
"keywords": [
"indicators",
"TA",
"technical analysis",
"cryptocurrency",
"trading-bot",
"trading-algorithms",
"trading",
"crypto",
"jesse",
"algo-trading",
"algorithmic-trading",
"typescript"
],
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test-watch": "jest --watch"
},
"engines": {
"node": ">=8.11.3",
"npm": "~5.6.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"author": "Sully Fischer <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/node": "^10.12.12",
"@types/jest": "^23.3.10",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"@types/lodash": "^4.14.120",
"jest": "^23.6.0",
"ts-jest": "^23.10.5"
}
}