-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"name": "meshage",
"version": "0.4.63",
"description": "A simple service mesh. Messages sent within the service mesh can be consistently partitioned across members of the cluster.",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"clean": "rm -rf coverage dist tmp",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint --exclude '**/*test*.ts' --exclude '**/*fake*.ts' --project 'tsconfig.json'",
"prepublishOnly": "npm run build && ./prepare.sh",
"pretest": "npm run lint",
"test": "jest --coverage --runInBand --forceExit",
"test:watch": "node --inspect ./node_modules/.bin/jest --watch --runInBand",
"build": "npm run -s clean && npm run -s lint && tsc -p tsconfig.release.json",
"build:only": "npm run -s clean && tsc -p tsconfig.release.json"
},
"author": "John Collier <john.collier4@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "1.19.0",
"debug": "4.1.1",
"express": "4.17.1",
"hashring": "3.2.0",
"lru-cache": "6.0.0",
"node-fetch": "2.6.0",
"normalize-url": "6.1.0",
"ts-nats": "1.2.15",
"uuid": "8.3.0"
},
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/debug": "4.1.2",
"@types/express": "4.17.7",
"@types/hashring": "3.2.1",
"@types/jest": "26.0.9",
"@types/lru-cache": "5.1.0",
"@types/node-fetch": "2.5.7",
"@types/uuid": "8.0.1",
"get-port": "5.1.1",
"jest": "29.5.0",
"leaked-handles": "5.2.0",
"node-docker-api": "1.1.22",
"ts-jest": "29.1.0",
"tslint": "6.1.3",
"typescript": "5.0.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/github1/meshage"
}
}