-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "candlestick",
"version": "0.0.7",
"description": "JavaScript library for candlestick patterns detection.",
"homepage": "https://github.com/cm45t3r/candlestick",
"author": {
"name": "cm45t3r",
"url": "https://github.com/cm45t3r"
},
"repository": "github:cm45t3r/candlestick",
"bugs": {
"url": "https://github.com/cm45t3r/candlestick/issues"
},
"license": "MIT",
"keywords": [
"candlestick-data",
"candlestick-pattern-detection",
"candlestick-pattern",
"candlestick-patterns-detection",
"candlestick-patterns",
"candlestick",
"candlesticks-pattern",
"candlesticks",
"javascript-library",
"javascript",
"ohlc",
"technical-analysis-indicators",
"technical-analysis-library",
"technical-analysis-methods",
"technical-analysis",
"technical-indicators"
],
"files": [
"src/",
"test/",
".eslintrc.json",
"HISTORY.md",
"index.js",
"LICENSE",
"package-lock.json",
"package.json",
"README.md"
],
"scripts": {
"lint": "eslint .",
"test": "node --test --experimental-test-coverage"
},
"engines": {
"node": ">=18"
},
"main": "index.js",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0"
}
}