33 lines
750 B
JSON
33 lines
750 B
JSON
{
|
|
"name": "nano-service",
|
|
"version": "0.0.1",
|
|
"description": "typescript library for making micro service",
|
|
"main": "dist/lib.js",
|
|
"types": "dist/lib.d.ts",
|
|
"files": [
|
|
"/dist"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test": "jest",
|
|
"build": "tsc -p tsconfig.build.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.qpismont.fr/qpismont/nano-service"
|
|
},
|
|
"author": "qpismont",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.6",
|
|
"@typescript-eslint/eslint-plugin": "^6.8.0",
|
|
"@typescript-eslint/parser": "^6.8.0",
|
|
"eslint": "^8.51.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"nats": "^2.17.0"
|
|
}
|
|
}
|