-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.34 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.34 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
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
94
95
{
"name": "@massive.com/client-js",
"version": "10.5.0",
"description": "Isomorphic Javascript client for Massive.com Stocks, Options, Indices, Futures, 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"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch",
"format": "prettier --write '**/*.ts'",
"generate": "sh ./scripts/generate.sh",
"pull-spec": "node ./scripts/pull_spec.js",
"generate-examples": "node ./scripts/generate-examples-with-tokens.js",
"build": "rm -rf ./dist && npm run pull-spec && npm run generate && tsup src/main.ts --dts --format esm --minify",
"generate-doc": "typedoc src/main.ts",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massive-com/client-js.git"
},
"keywords": [
"massive.com",
"stock api",
"options api",
"indices api",
"futures api",
"forex api",
"crypto api"
],
"contributors": [
{
"name": "Massive Support",
"email": "support@massive.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/massive-com/client-js/issues"
},
"homepage": "https://github.com/massive-com/client-js#readme",
"dependencies": {
"axios": "^1.8.4",
"cross-fetch": "^3.1.4",
"openapi-generator-cli": "^1.0.0",
"query-string": "^7.0.1",
"websocket": "^1.0.34"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.18.4",
"@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": "^11.7.5",
"parse-path": "7.0.1",
"prettier": "^2.5.1",
"release-it": "^19.0.3",
"sinon": "^12.0.1",
"ts-node": "^10.9.1",
"tsup": "^8.5.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"
}
}