-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.55 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@jcoreio/postgres-shard-coordinator",
"version": "0.0.0-development",
"description": "helps processes pick a unique shard index and determine the number of shards, via postgres",
"sideEffects": false,
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/postgres-shard-coordinator.git"
},
"keywords": [
"postgres",
"sharding"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/postgres-shard-coordinator/issues"
},
"homepage": "https://github.com/jcoreio/postgres-shard-coordinator#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/pg-ipc": "^1.0.1",
"@jcoreio/poll": "^2.3.1",
"@jcoreio/require-env": "^1.0.11",
"@jcoreio/toolchain": "^4.6.1",
"@jcoreio/toolchain-circle": "^4.6.1",
"@jcoreio/toolchain-esnext": "^4.6.1",
"@jcoreio/toolchain-flow": "^4.6.1",
"@jcoreio/toolchain-mocha": "^4.6.1",
"@jcoreio/toolchain-semantic-release": "^4.6.1",
"@jcoreio/toolchain-typescript": "^4.6.1",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.24",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"defaultenv": "^4.1.0",
"delay": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"flow-bin": "^0.161.0",
"lodash": "^4.17.11",
"mocha": "^10.2.0",
"p-event": "^2.1.0",
"pg": "^8.7.1",
"rimraf": "^3.0.2",
"typescript": "^5.1.0",
"umzug": "^2.2.0"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"@jcoreio/typed-event-emitter": "^1.2.1",
"debug": "^4.1.1",
"uuid": "^3.3.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.11.0"
}