-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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": "candlestick-convert",
"version": "7.0.0",
"description": "OHLCV Candlestick converter and batcher with Typescript support",
"main": "build/index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "tsc --build",
"build:check": "node -e \"require('./build')\"",
"prepublishOnly": "npm test && npm run build && npm run build && npm run build:check",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"keywords": [
"ohlc",
"ohlcv",
"tickchart",
"candlestick",
"ccxt",
"stock",
"chart",
"analysis"
],
"repository": {
"type": "git",
"url": "git+https://github.com/valamidev/candlestick-convert.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/valamidev/candlestick-convert/issues"
},
"homepage": "https://github.com/valamidev/candlestick-convert#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"coveralls": "^3.1.1",
"jest": ">=29.5.0",
"rimraf": "^4.4.1",
"ts-jest": ">=29.1.0",
"typescript": "^5.0.3"
}
}