-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "@binance/connector",
"version": "3.5.0",
"description": "This is a lightweight library that works as a connector to the Binance public API.",
"main": "src/index.js",
"scripts": {
"jsdoc": "jsdoc -c ./docs_src/conf.json && ./docs_src/docs.sh",
"jsdoc:win": "jsdoc -c ./docs_src/conf.json && npx jsdoc --readme ./docs_src/gettingStarted.md src/modules/restful/blvt.js && node ./docs_src/generateDoc.js && RD /S /Q out",
"test": "jest --maxWorkers 4 --bail",
"test:watch": "jest --watchAll",
"coverage": "jest --silent --ci --coverage --testLocationInResults --json --outputFile=\"report.json\"",
"standard": "standard",
"standard:fix": "standard --fix ",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/binance/binance-connector-node.git"
},
"engines": {
"node": ">=12.22.3",
"npm": ">=6.14.13"
},
"keywords": [
"Binance",
"API"
],
"author": "Binance",
"license": "MIT",
"bugs": {
"url": "https://github.com/binance/binance-connector-node/issues"
},
"homepage": "https://github.com/binance/binance-connector-node#readme",
"devDependencies": {
"clean-jsdoc-theme": "^4.2",
"husky": "^6.0.0",
"jest": "^29.5",
"jsdoc": "^4.0.0",
"marked": "^4.3.0",
"nock": "^13.3",
"standard": "^17.0"
},
"files": [
"src/**/*"
],
"dependencies": {
"axios": "^1.7.4",
"ws": "^8.17.1"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/websocket/subscription.test.js"
],
"transformIgnorePatterns": [
"node_modules/(?!axios)/"
],
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"standard": {
"ignore": [
"/docs/**/*.js"
]
}
}