-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "ameba-ts",
"version": "0.0.0-development",
"description": "A multi-asset backtester for TypeScript",
"homepage": "https://github.com/pekam/ameba-ts",
"repository": {
"type": "git",
"url": "https://github.com/pekam/ameba-ts.git"
},
"author": "Pekka Maanpää",
"license": "MIT",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/commonjs/index.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf ./dist && npm run build:es && npm run build:cjs && node post-build.js",
"build:es": "tsc --module esnext --outDir \"./dist/es\"",
"build:cjs": "tsc --module commonjs --outDir \"./dist/commonjs\"",
"test": "jest",
"check-types": "tsc -w --noEmit",
"prepare": "husky install",
"format": "prettier --write .",
"release": "npm run build && semantic-release"
},
"dependencies": {
"cli-progress": "^3.8.2",
"luxon": "^3.2.1",
"remeda": "^1.3.0",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/luxon": "^3.2.0",
"@types/node": "^18.11.18",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.0.5",
"semantic-release": "^22.0.12",
"ts-jest": "^29.0.3",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
}
}