-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.87 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pg-compose",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepack": "rm -Rf dist && tsc && chmod +x dist/cli.js && cp src/worker/graphile-secrets.yaml dist/worker/graphile-secrets.yaml",
"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": "jest",
"test:watch": "jest --watch",
"release": "standard-version"
},
"bin": {
"pg-compose": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/politics-rewired/pg-compose.git"
},
"keywords": [
"postgresql",
"postgres",
"migrations",
"pg",
"sql",
"compose",
"install",
"test"
],
"author": "Ben Packer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/politics-rewired/pg-compose/issues"
},
"homepage": "https://github.com/politics-rewired/pg-compose#readme",
"dependencies": {
"@graphile/logger": "^0.2.0",
"@types/cryptr": "^4.0.1",
"chokidar": "^3.3.1",
"cosmiconfig": "^6.0.0",
"cryptr": "^6.0.2",
"faker": "^4.1.0",
"glob": "^7.1.6",
"graphile-scheduler": "^0.8.0",
"graphile-worker": "^0.13.0",
"lodash": "^4.17.20",
"mustache": "^4.0.1",
"runtypes": "^4.2.0",
"tape": "^4.13.2",
"tslib": "^1.9.3",
"yaml": "^1.10.0",
"yargs": "^15.3.1"
},
"peerDependencies": {
"@types/pg": ">=6.5 <9",
"pg": ">=6.5 <9"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/debug": "^4.1.2",
"@types/faker": "^4.1.11",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.168",
"@types/mustache": "^4.0.1",
"@types/pg": "^8.6.5",
"@types/tape": "^4.13.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"depcheck": "^0.9.2",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint_d": "^8.0.0",
"fast-check": "^1.23.0",
"jest": "^25.1.0",
"jsverify": "^0.8.4",
"pg": "^8.7.3",
"pg-connection-string": "^2.5.0",
"prettier": "^1.19.1",
"standard-version": "^9.1.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.8.2",
"typescript": "^3.7.5"
},
"resolutions": {
"graphile-worker": "^0.13.0"
},
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
}
}