-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 KB
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
{
"name": "network-services",
"version": "1.1.12",
"description": "",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"watch": "tsc --watch",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"format:lint": "npm run format && npm run lint",
"test": "npm run clean:build && npm install --prefix ./tests/test && npm run clean:build --prefix ./tests/test && npm start --prefix ./tests/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/far-analytics/network-services.git"
},
"author": "FAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/far-analytics/network-services/issues"
},
"homepage": "https://github.com/far-analytics/network-services#readme",
"engines": {
"npm": ">=10.2.3",
"node": ">=18.20.4"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"keywords": [
"api",
"ipc",
"marshal",
"microservice",
"microservices",
"net",
"rpc",
"service",
"tcp",
"tls",
"typesafe",
"typescript"
]
}