-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 876 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
{
"name": "small-rpc",
"version": "2.1.5",
"description": "Small RRPC library for your project or microservice",
"main": "RPC.js",
"repository": "https://github.com/ya-kostik/small-rpc",
"author": "Constantin Tsukanov <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "jest --verbose",
"watch": "jest --watch",
"lint": "./node_modules/eslint/bin/eslint.js ./",
"toPublish": "tarball=\"$(npm pack .)\"; wc -c \"${tarball}\"; tar tvf \"${tarball}\"; rm \"${tarball}\";"
},
"keywords": [
"rpc",
"micro",
"small",
"microservice",
"RRPC"
],
"files": [
"RPC.js",
"RPC.TYPES.js",
"middlewares/Whitelist.js",
"Inspector.js",
"PathMixin.js"
],
"devDependencies": {
"eslint": "^8.2.0",
"jest": "^27.3.1"
},
"dependencies": {
"lodash": "^4.17.21"
}
}