-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 845 Bytes
/
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
{
"name": "@dalalstreet/max-pain",
"version": "1.0.0",
"description": "Calculate the max pain for an option chain",
"main": "index.js",
"scripts": {
"test": "ava"
},
"keywords": [
"fintech",
"max pain",
"stock markets",
"options",
"trading",
"call options",
"put options"
],
"author": "callmekatootie (https://github.com/callmekatootie)",
"license": "MIT",
"homepage": "https://github.com/callmekatootie/max-pain#max-pain",
"repository": {
"type": "git",
"url": "https://github.com/callmekatootie/max-pain.git"
},
"bugs": {
"url": "https://github.com/callmekatootie/max-pain/issues"
},
"engines": {
"node": ">=12"
},
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"ava": "^3.12.1",
"standard": "^14.3.4"
}
}