-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@curo/calculator",
"version": "2.0.0",
"description": "A feature-rich library for performing simple to advanced instalment credit financial calculations.",
"keywords": [
"finance calculator",
"instalment credit",
"leasing",
"loans",
"hire purchase",
"irr",
"xirr",
"apr",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andrewmurphy353/curo-calculator.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"assets/cash-flow-diagram.png",
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --fix ./src/**/*.ts",
"type-check": "tsc --noEmit",
"test": "nyc mocha",
"build": "npm run test && rollup -c --bundleConfigAsCjs"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/index.ts"
],
"reporter": [
"text",
"lcovonly"
],
"temp-dir": "./coverage/.nyc_output",
"clean": true,
"cache": true
},
"author": {
"name": "Andrew Murphy",
"email": "[email protected]",
"url": "https://github.com/andrewmurphy353"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewmurphy353/curo-calculator/issues"
},
"homepage": "https://github.com/andrewmurphy353/curo-calculator#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rollup": "^3.28.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.35.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}