-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1020 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
{
"name": "hydrats",
"version": "0.1.8",
"description": "HydraTS is a TypeScript library for building Hydra-powered Microservices and other distributed computing software.",
"main": "./dist/src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --fix --ext .ts",
"release": "tsc; versiony --patch",
"cid": "git rev-parse HEAD"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnxtech/hydraTS.git"
},
"author": "Carlos Justiniano",
"license": "ISC",
"bugs": {
"url": "https://github.com/pnxtech/hydraTS/issues"
},
"homepage": "https://github.com/pnxtech/hydraTS#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.7.11",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"redis": "^4.3.0",
"uuid": "^8.3.2"
}
}