-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.6 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "option-pricing",
"version": "2.1.0",
"description": "Analytical (Black-Scholes) and numerical (binomial tree, Monte Carlo simulation) option pricing calculator supporting different payoff styles (European and American).",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "webpack",
"commit": "npm run precommit && git add -A && git commit -m ",
"lint": "./node_modules/.bin/eslint ./src/**/*.js ./test/**/*.js",
"lint-fix": "./node_modules/.bin/eslint ./src/**/*.js ./test/**/*.js --fix",
"precommit": "npm run lint && npm run test",
"prepublishOnly": "node check-version.cjs && npm run lint && npm run test && npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest ./test",
"test-coverage": "NODE_OPTIONS=--experimental-vm-modules jest ./test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterrhodesdev/option-pricing.git"
},
"keywords": [
"option",
"pricing",
"black-scholes",
"binomial-tree",
"monte-carlo-simulation"
],
"author": "Peter Rhodes",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterrhodesdev/option-pricing/issues"
},
"homepage": "https://github.com/peterrhodesdev/option-pricing#readme",
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}