-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "@tchain/tcabci-read-js-client",
"version": "2.2.1",
"description": "TransferChain Fastest Read Network WebSocket Client",
"main": "client.js",
"type": "module",
"scripts": {
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha --timeout 5000",
"test:coverage": "export NODE_ENV=test || SET \"NODE_ENV=test\" && nyc --reporter=text mocha --timeout 5000",
"lint": "eslint --ext .js ./",
"lint-fix": "eslint --fix --ext .js ./",
"lint-fix-file": "eslint --fix --ext .js",
"format": "prettier --write \"**/*.{js,md,json}\" --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TransferChain/tcabci-read-js-client.git"
},
"author": "TransferChain A.G <info@transferchain.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TransferChain/tcabci-read-js-client/issues"
},
"homepage": "https://github.com/TransferChain/tcabci-read-js-client#readme",
"devDependencies": {
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"express": "^4.21.1",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"unit.js": "^2.1.1",
"ws": "^8.18.0"
},
"dependencies": {
"reconnecting-websocket": "^4.4.0"
}
}