@massive.com/client-js 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +129 -0
- package/LICENSE +21 -0
- package/README.md +122 -0
- package/dist/main.d.ts +27237 -0
- package/dist/main.js +1 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@massive.com/client-js",
|
|
3
|
+
"version": "9.0.0",
|
|
4
|
+
"description": "Isomorphic Javascript client for Polygon.io Stocks, Forex, and Crypto APIs",
|
|
5
|
+
"main": "dist/main.js",
|
|
6
|
+
"types": "dist/main.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
"types": "./dist/main.d.ts",
|
|
10
|
+
"import": "./dist/main.js"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "mocha",
|
|
14
|
+
"test:watch": "mocha --watch",
|
|
15
|
+
"format": "prettier --write '**/*.ts'",
|
|
16
|
+
"generate": "sh ./scripts/generate.sh",
|
|
17
|
+
"pull-spec": "node ./scripts/pull_spec.js",
|
|
18
|
+
"generate-examples": "node ./scripts/generate-examples-with-tokens.js",
|
|
19
|
+
"build": "rm -rf ./dist && npm run pull-spec && npm run generate && tsup src/main.ts --dts --format esm --minify",
|
|
20
|
+
"generate-doc": "typedoc src/main.ts",
|
|
21
|
+
"release": "release-it"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/massive-com/client-js.git"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"massive.com",
|
|
29
|
+
"stock api",
|
|
30
|
+
"options api",
|
|
31
|
+
"forex api",
|
|
32
|
+
"crypto api"
|
|
33
|
+
],
|
|
34
|
+
"contributors": [
|
|
35
|
+
{
|
|
36
|
+
"name": "Massive Support",
|
|
37
|
+
"email": "support@massive.com"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/massive-com/client-js/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/massive-com/client-js#readme",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"axios": "^1.8.4",
|
|
47
|
+
"cross-fetch": "^3.1.4",
|
|
48
|
+
"query-string": "^7.0.1",
|
|
49
|
+
"websocket": "^1.0.34"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@openapitools/openapi-generator-cli": "^2.18.4",
|
|
53
|
+
"@types/chai": "^4.2.22",
|
|
54
|
+
"@types/mocha": "^9.0.0",
|
|
55
|
+
"@types/node": "^16.11.11",
|
|
56
|
+
"@types/sinon": "^10.0.6",
|
|
57
|
+
"@types/websocket": "^1.0.4",
|
|
58
|
+
"chai": "^4.3.4",
|
|
59
|
+
"events": "^3.3.0",
|
|
60
|
+
"husky": "^7.0.4",
|
|
61
|
+
"lint-staged": "^12.1.2",
|
|
62
|
+
"lodash": "^4.17.21",
|
|
63
|
+
"mocha": "^9.1.3",
|
|
64
|
+
"parse-path": "7.0.1",
|
|
65
|
+
"prettier": "^2.5.1",
|
|
66
|
+
"release-it": "^19.0.3",
|
|
67
|
+
"sinon": "^12.0.1",
|
|
68
|
+
"ts-node": "^10.9.1",
|
|
69
|
+
"tsup": "^8.5.0",
|
|
70
|
+
"typedoc": "^0.22.10",
|
|
71
|
+
"typescript": "^4.5.2",
|
|
72
|
+
"ws": "^8.13.0"
|
|
73
|
+
},
|
|
74
|
+
"husky": {
|
|
75
|
+
"hooks": {
|
|
76
|
+
"pre-commit": "lint-staged"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"lint-staged": {
|
|
80
|
+
"*.{ts,json,md}": [
|
|
81
|
+
"prettier --write",
|
|
82
|
+
"git add"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
"workspaces": [
|
|
86
|
+
"./dist/*",
|
|
87
|
+
"./sandbox"
|
|
88
|
+
],
|
|
89
|
+
"engines": {
|
|
90
|
+
"node": ">=16"
|
|
91
|
+
}
|
|
92
|
+
}
|