-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "request-json-rpc2",
"version": "2.2.3",
"description": "Simplified JSON-RPC2 request nodejs and browser client",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"type": "module",
"types": "index.d.ts",
"scripts": {
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "node tests/index.test.mjs",
"test:cjs": "node tests/index.test.cjs",
"build": "NODE_ENV=production parcel build index.mjs --no-autoinstall --no-content-hash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qertis/request-json-rpc2.git"
},
"targets": {
"main": {
"isLibrary": true,
"optimize": true,
"scopeHoist": true
},
"module": {
"isLibrary": true,
"optimize": true,
"scopeHoist": true
},
"types": false
},
"files": [
"dist/index.cjs",
"dist/index.mjs",
"index.d.ts"
],
"keywords": [
"request json rpc2",
"request-json-rpc2",
"node jsonrpc2",
"browser jsonrpc2",
"json-rpc2",
"json-rpc-2",
"request-jsonrpc",
"fetch json rpc 2.0",
"request rpc 2.0",
"rpc api client request"
],
"author": "Denis Baskovsky (https://baskovsky.ru)",
"license": "MIT",
"bugs": {
"url": "https://github.com/qertis/request-json-rpc2/issues"
},
"homepage": "https://github.com/qertis/request-json-rpc2#readme",
"devDependencies": {
"express": "~4.19.1",
"parcel": "~2.12.0",
"supertest": "~7.0.0"
}
}