-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.22 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.22 KB
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
{
"name": "affirm-apr-calculator",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"repository": "git@github.com:everettmorgan/apr-calculator.git",
"author": "everettmorgan <gitlab@foobar.mozmail.com>",
"license": "MIT",
"dependencies": {
"lit": "^3.3.1",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0",
"zod": "^4.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"happy-dom": "^20.8.3",
"typescript": "^5.9.2",
"vitest": "^4.0.18"
},
"scripts": {
"lint": "yarn eslint --fix",
"build": "tsc && esbuild js/index.js --bundle --platform=browser --target=es2020 --outfile=dist/apr_calculator.js --minify --sourcemap --format=iife --global-name=AffirmAprCalculator",
"test": "vitest run",
"test:watch": "vitest"
},
"packageManager": "yarn@4.9.3+sha512.8295ee814f6b253e16f516416481b481a215ed03ef1ae38524d108084872560a9ed75aeb23b91ab64222062ac4149a594150ae538c2a9536fdbcefd4e49b11cc"
}