-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "discounted-cash-flow",
"version": "1.0.2",
"description": "Calculates the present value of future cash flows with a margin of safety.",
"main": "src/DiscountedCashFlow.js",
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-exports": "^0.8.0",
"mocha": "^10.2.0",
"prettier": "2.8.8",
"should": "^13.2.3",
"sinon": "^15.0.4"
},
"scripts": {
"prettier:fix": "npx prettier --write .",
"prettier:check": "npx prettier --check .",
"clean": "rm -rf node_modules && npm i",
"lint": "eslint .",
"test:only": "mocha --bail --recursive test",
"test": "npm run prettier:check && npm run lint && npm run test:only"
},
"keywords": [
"cashflow",
"present",
"valuation",
"investing",
"dcf",
"intrinsic",
"value"
],
"homepage": "https://github.com/bertolo1988/dcf#readme",
"author": "bertolo1988 <[email protected]> (https://github.com/bertolo1988)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bertolo1988/dcf.git"
},
"bugs": {
"url": "https://github.com/bertolo1988/dcf/issues"
}
}