forked from archilogic-com/jsonrpc-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "node-jsonrpc-client",
"version": "2.0.0",
"description": "A lightweight JSON-RPC 2.0 client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"jsonrpc"
],
"author": "Nasreddine Bac Ali <nasreddine.bacali95@gmail.com>",
"repository": "https://github.com/bacali95/node-jsonrpc-client",
"license": "ISC",
"scripts": {
"build": "npm-run-all lint format tsc",
"tsc": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"pretest": "yarn build",
"prepublishOnly": "npm-run-all test"
},
"dependencies": {
"axios": "^1.6.8",
"axios-cookiejar-support": "^1.0.1",
"tough-cookie": "^4.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/tough-cookie": "^4.0.1",
"@types/uuid": "^8.3.3",
"http-jsonrpc-server": "^1.1.0",
"jest": "^27.4.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.3"
}
}