forked from graphile/worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.57 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
{
"name": "graphile-worker",
"version": "0.11.4",
"description": "Job queue for PostgreSQL",
"main": "dist/index.js",
"scripts": {
"prepack": "rm -Rf dist && tsc && chmod +x dist/cli.js",
"watch": "mkdir -p dist && touch dist/cli.js && chmod +x dist/cli.js && tsc --watch",
"lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.graphql . --fix; prettier --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"prettier:check": "prettier --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"test": "yarn prepack && depcheck && createdb graphile_worker_test || true && psql -X -v GRAPHILE_WORKER_SCHEMA=\"${GRAPHILE_WORKER_SCHEMA:-graphile_worker}\" -v ON_ERROR_STOP=1 -f __tests__/reset-db.sql graphile_worker_test && jest -i",
"db:dump": "./scripts/dump_db",
"perfTest": "cd perfTest && node ./run.js",
"preversion": "grep '^### Pending' RELEASE_NOTES.md && echo \"⚠️ Cannot publish with 'Pending' in RELEASE_NOTES ⚠️\" && exit 1 || true"
},
"bin": {
"graphile-worker": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/graphile/worker.git"
},
"keywords": [
"postgresql",
"postgres",
"pg",
"worker",
"sql",
"easy",
"fast",
"jobs",
"background",
"tasks"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/worker/issues"
},
"homepage": "https://github.com/graphile/worker#readme",
"dependencies": {
"@graphile/logger": "^0.2.0",
"@types/debug": "^4.1.2",
"@types/pg": ">=6 <9",
"chokidar": "^3.4.0",
"cosmiconfig": "^7.0.0",
"json5": "^2.1.3",
"pg": ">=6.5 <9",
"tslib": "^2.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/json5": "^0.0.30",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"depcheck": "^1.3.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint_d": "^9.1.2",
"jest": "^26.6.3",
"jest-time-helpers": "^0.1.0",
"pg-connection-string": "^2.4.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"files": [
"dist",
"sql"
],
"engines": {
"node": ">=10.0.0"
}
}