forked from graphile/worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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": "graphile-worker",
"version": "0.2.0",
"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": "eslint 'src/**/*'",
"test": "createdb graphile_worker_test || true && psql -Xv ON_ERROR_STOP=1 -f __tests__/reset-db.sql graphile_worker_test && jest -i",
"perfTest": "cd perfTest && ./run.sh"
},
"bin": {
"graphile-worker": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/graphile/worker.git"
},
"keywords": [
"postgresql",
"postgres",
"pg",
"worker",
"sql",
"easy",
"fast",
"jobs",
"background",
"tasks"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/worker/issues"
},
"homepage": "https://github.com/graphile/worker#readme",
"dependencies": {
"@types/chokidar": "^1.7.5",
"@types/debug": "^4.1.2",
"@types/pg": "^7.4.11",
"chokidar": "^2.1.2",
"pg": ">=6.5 <8",
"pg-connection-string": "^2.0.0",
"tslib": "^1.9.3",
"yargs": "^13.2.2"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint_d": "^8.0.0",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"files": [
"dist",
"sql"
],
"engines": {
"node": ">=10.0.0"
}
}