-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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": "http-jsonrpc-server",
"version": "1.1.2",
"description": "A simple and lightweight library for creating a JSON-RPC 2.0 compliant HTTP server",
"main": "lib/http-jsonrpc-server.js",
"types": "lib/http-jsonrpc-server.d.ts",
"scripts": {
"coverage": "c8 npm test",
"coverage-ci": "c8 --reporter=lcov npm test",
"lint": "eslint lib/*.js",
"test": "node --test test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sangaman/http-jsonrpc-server.git"
},
"keywords": [
"jsonrpc",
"json-rpc",
"json rpc",
"rpc server"
],
"author": "Daniel McNally",
"license": "MIT",
"bugs": {
"url": "https://github.com/sangaman/http-jsonrpc-server/issues"
},
"homepage": "https://github.com/sangaman/http-jsonrpc-server#readme",
"files": [
"lib"
],
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=6.0.0"
}
}