forked from polygon-io/client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@polygon.io/client-js",
"version": "7.3.2",
"description": "Isomorphic Javascript client for Polygon.io Stocks, Forex, and Crypto APIs",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"exports": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch",
"format": "prettier --write '**/*.ts'",
"build": "rm -rf ./dist && tsup src/main.ts --dts --format cjs,esm --minify",
"generate-doc": "typedoc src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polygon-io/client-js.git"
},
"keywords": [
"polygon.io",
"stock api",
"options api",
"forex api",
"crypto api"
],
"contributors": [
{
"name": "Julien Prugne",
"email": "[email protected]"
},
{
"name": "Katie Adams",
"email": "[email protected]"
},
{
"name": "Andrew Bailey",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/polygon-io/client-js/issues"
},
"homepage": "https://github.com/polygon-io/client-js#readme",
"dependencies": {
"cross-fetch": "^3.1.4",
"query-string": "^7.0.1",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@types/sinon": "^10.0.6",
"@types/websocket": "^1.0.4",
"chai": "^4.3.4",
"events": "^3.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"sinon": "^12.0.1",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.2",
"ws": "^8.13.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
]
},
"workspaces": [
"./dist/*",
"./sandbox"
],
"engines": {
"node": ">=16"
}
}