-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 887 Bytes
/
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
{
"name": "effective-appreciation-rate",
"version": "1.0.0",
"description": "Effective appreciation / depreciation rate calculator for investors.",
"repository": "[email protected]:roman-kaspar/effective-appreciation-rate.git",
"author": "Roman Kaspar <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --esModuleInterop --target ES2020 --module commonjs --outDir dist src/ear.ts",
"dev:build": "tsc --esModuleInterop --watch --target ES2020 --module commonjs --outDir dist src/ear.ts"
},
"renovate": {
"extends": [
"config:semverAllMonthly"
],
"bumpVersion": "patch",
"automerge": true,
"major": {
"automerge": false
}
},
"devDependencies": {
"@types/node": "^14.14.35",
"typescript": "^4.2.3"
},
"dependencies": {
"minimist": "^1.2.5",
"printf": "^0.6.1"
}
}