-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 953 Bytes
/
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
{
"name": "express-json-rpc-router",
"description": "Json-rpc middleware router for express",
"version": "1.4.0",
"author": "Valerii Kuzivanov <[email protected]>",
"license": "MIT",
"repository": "express-json-rpc-router",
"main": "index.js",
"scripts": {
"lint": "eslint ./**/*.js ./*.js",
"lint:fix": "eslint ./**/*.js ./*.js --fix",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1"
},
"engines": {
"node": ">= 8.0"
},
"files": [
"index.js",
"lib/",
"HISTORY.md",
"LICENSE"
],
"keywords": [
"json-rpc",
"router",
"middleware",
"jsonrpc2",
"express"
],
"bugs": {
"url": "https://github.com/Valeronlol/express-json-rpc-router/issues"
},
"homepage": "https://github.com/Valeronlol/express-json-rpc-router#readme"
}