-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 975 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
41
{
"name": "@habeetat/jrpc-server",
"version": "0.0.9",
"description": "Json RPC Server",
"main": "build/index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/webeetle/JRPC-Server.git"
},
"keywords": [
"json",
"rpc",
"server"
],
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"docs": "typedoc --options typedoc.json"
},
"author": "ParanoiaSystem",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/json-schema": "^7.0.11",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.3"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1"
}
}