-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "@jdizm/finance-calculator",
"version": "1.4.1",
"description": "A finance calculator to calculate compound interest over a period of time with different investment types.",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "npx vite-node index.ts",
"lint": "eslint . --ext .ts,.tsx --max-warnings 4",
"format": "prettier -w '**/*.{js,ts,mjs,cjs,json,tsx,jsx}'",
"format:check": "prettier --check '**/*.{js,ts,mjs,cjs,json,tsx,jsx}'",
"tsc:check": "tsc -p tsconfig.json --noEmit",
"build:tsc": "rm -rf dist && tsc -p tsconfig.json",
"build": "npm run tsc:check && rm -rf dist && node build.mjs",
"test": "vitest --run --coverage"
},
"keywords": [],
"author": "JDIZM",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitest/coverage-istanbul": "^2.0.4",
"eslint": "^8.37.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"npm-dts": "^1.3.12",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite-node": "^2.0.0",
"vitest": "^2.0.0"
},
"volta": {
"node": "20.18.1"
},
"files": [
"dist"
],
"engines": {
"node": "^18.0.0 || >= 20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JDIZM/compound-interest.git"
},
"bugs": {
"url": "https://github.com/JDIZM/compound-interest/issues"
},
"homepage": "https://github.com/JDIZM/compound-interest#readme"
}