This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.89 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@egodigital/microservices",
"version": "0.7.0",
"description": "Shared library for microservices, written for Node.js",
"author": "e.GO Digital GmbH, Aachen, Germany",
"license": "LGPL-3.0",
"main": "lib/index.js",
"private": false,
"files": [
"CHANGELOG.md",
"index.d.ts",
"lib",
"!lib/**/*.map"
],
"bugs": {
"url": "https://github.com/egodigital/node-microservices/issues"
},
"homepage": "https://github.com/egodigital/node-microservices#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/egodigital/node-microservices.git"
},
"keywords": [
"microservice",
"nats",
"kubernetes",
"docker",
"library",
"module",
"helper",
"node",
"typescript",
"bcrypt",
"jwt",
"json web token"
],
"dependencies": {
"@egodigital/types": "^1.2.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"node-nats-streaming": "^0.3.2"
},
"devDependencies": {
"@egodigital/tsconfig": "^4.0.0",
"@types/node": "^12.20.10",
"del-cli": "^3.0.1",
"eslint": "^7.24.0",
"eslint-config-ego": "^0.15.0",
"tslint": "^6.1.3",
"typedoc": "^0.20.35",
"typescript": "^4.2.4"
},
"peerDependencies": {
"express": "^4.17.1"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
"deploy": "npm install && npm run build && npm publish",
"doc": "del ./doc && typedoc --out ./doc ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src"
}
}