-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "@nvisionative/nvq-loan-calculator",
"version": "1.0.0-beta0001",
"description": "nvQuickLoanCalculator is a simple loan calculator that allows you to quickly calculate the monthly payment for a loan based on the loan amount, interest rate, and the loan term.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/nvq-loan-calculator/nvq-loan-calculator.esm.js",
"exports": {
".": {
"import": "./dist/nvq-loan-calculator/nvq-loan-calculator.esm.js",
"require": "./dist/nvq-loan-calculator/nvq-loan-calculator.cjs.js"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nvisionative/nvq-loan-calculator.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"devDependencies": {
"@stencil/core": "^4.19.2",
"@stencil/sass": "^3.0.12",
"@types/jest": "^29.5.6",
"@types/node": "^20.14.10",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"puppeteer": "^22.12.1"
},
"license": "MIT"
}