-
Notifications
You must be signed in to change notification settings - Fork 515
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 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
{
"name": "binance-api-node",
"version": "0.13.8",
"description": "A node API wrapper for Binance",
"main": "dist",
"types": "index.d.ts",
"browser": {
"crypto": false,
"./dist/http-client.js": "./dist/http-client.js"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"index.d.ts",
"types"
],
"scripts": {
"build": "rm -rf dist && babel src -d dist",
"prepare": "npm run build",
"test": "npm run test:ava && npm run test:browser",
"test:ava": "ava --timeout=90s -v",
"test:browser": "node test/browser/browser-test-runner.mjs && ava test/browser/crypto-browser-playwright.js test/browser/websocket-browser.test.js --timeout=15s -v",
"test:browser:signature": "node test/browser/browser-test-runner.mjs",
"test:browser:websocket": "ava test/browser/websocket-browser.test.js --timeout=15s -v",
"test:browser:crypto": "ava test/browser/crypto-browser-playwright.js --timeout=15s -v",
"cover": "nyc ava",
"report": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"static-tests": "ava test/static-tests.js",
"prettier": "prettier --write '{src,test}/**/*.{ts,js}'",
"prettier:check": "prettier -l '{src,test}/**/*.{ts,js}'",
"ci": "npm run lint && npm run prettier:check && npm run test",
"typecheck": "tsc --noEmit",
"publishPackage": "npm run build && sh publish.sh && git push && git push --tags && npm publish"
},
"dependencies": {
"https-proxy-agent": "^5.0.0",
"isomorphic-ws": "^4.0.1",
"json-bigint": "^1.0.0",
"lodash.zipobject": "^4.1.3",
"node-fetch": "^2.7.0",
"reconnecting-websocket": "^4.2.0",
"ws": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"@types/node": "^18.0.0",
"ava": "^4.1.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"coveralls": "^3.0.9",
"dotenv": "^8.2.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-zavatta": "^6.0.0",
"glob": "^11.0.3",
"nock": "^14.0.10",
"nyc": "^17.1.0",
"playwright": "^1.56.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"npm": ">= 6.0.0"
},
"ava": {
"require": [
"@babel/register",
"@babel/polyfill"
],
"files": [
"test/**/*",
"!test/utils.js",
"!test/config.js",
"!test/browser-compat.mjs",
"!test/browser/**/*"
],
"concurrency": 1,
"timeout": "60s"
},
"author": "Balthazar Gronon <git@balthazar.dev>",
"homepage": "https://github.com/ccxt/binance-api-node",
"license": "MIT"
}