-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "currency-pattern-detector",
"version": "0.1.3",
"description": "Finding patterns in a temporary financial row.",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon ./build/index --watch ./build --delay 3",
"prod": "NODE_ENV=production node ./build/index",
"test": "node_modules/.bin/jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArtReeX/currency-pattern-detector.git"
},
"keywords": [
"pattern",
"detector",
"currency",
"cryptocurrency",
"javascript",
"typescript",
"candlestick"
],
"author": "Arthur Lazarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArtReeX/currency-pattern-detector/issues"
},
"homepage": "https://github.com/ArtReeX/currency-pattern-detector#readme",
"devDependencies": {
"@types/jasmine": "^3.5.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.1",
"jasmine": "^3.5.0",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"lodash": "^4.17.15"
}
}