-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 970 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
36
37
38
39
{
"name": "tsti",
"version": "1.0.2",
"description": "Technical Indicators for stock market analysis - written in typescript",
"main": "index.js",
"scripts": {
"start:build": "tsc -w",
"start:dist": "npm-prepare-dist",
"start:run": "nodemon dist/index.js",
"start": "concurrently npm:start:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSSDeveloper/tsti.git"
},
"keywords": [
"Technical Indicators",
"Stock Market",
"Algo Trading",
"Type Script",
"Node.js"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/OSSDeveloper/tsti/issues"
},
"homepage": "https://github.com/OSSDeveloper/tsti#readme",
"devDependencies": {
"@types/lodash": "^4.14.178",
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"npm-prepare-dist": "^0.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"lodash": "^4.17.21"
}
}