-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "node-irr",
"version": "2.0.5",
"description": "A Node.js package that provides an easy and customizable way to calculate internal rate of return.",
"author": "Eric Malachias",
"license": "MIT",
"keywords": [
"irr",
"xirr",
"internal",
"rate",
"return"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/eric-malachias/irr.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.ts",
"test:watch": "jest --watchAll",
"dev": "npm run test:watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"bugs": {
"url": "https://github.com/eric-malachias/irr/issues"
},
"homepage": "https://github.com/eric-malachias/irr#readme",
"devDependencies": {
"@types/jest": "29.2.4",
"@types/node": "18.11.17",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.3.1",
"nodemon": "2.0.20",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.1",
"typescript": "4.9.4"
}
}