-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
81 lines (81 loc) · 2.66 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-migrate",
"version": "2.0.0-rc.2",
"description": "Opinionated SQL-powered migration tool for PostgreSQL",
"main": "dist/index.js",
"scripts": {
"lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
"lint:deps": "depcheck --ignores @types/jest,@types/json5,@types/node,@types/mock-fs,@types/pg,@types/yargs,eslint_d,mock-fs,tslib",
"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}'",
"tsc": "tsc -p tsconfig.build.json",
"prepack": "npm run tsc && chmod +x dist/cli.js",
"clean": "rm -Rf dist",
"test": "yarn lint && yarn run lint:deps && FORCE_COLOR=1 yarn run test:only --ci",
"test:only": "NODE_OPTIONS=\"--experimental-vm-modules\" jest -i",
"version": "yarn prepack && ./scripts/update-docs.js && node ./scripts/version.mjs && git add README.md src/version.ts",
"watch": "mkdir -p dist && touch dist/cli.js && chmod +x dist/cli.js && npm run tsc --watch"
},
"bin": {
"graphile-migrate": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/graphile/migrate.git"
},
"keywords": [
"postgresql",
"postgres",
"pg",
"migrate",
"sql",
"easy",
"fast",
"watch",
"functions"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/migrate/issues"
},
"homepage": "https://github.com/graphile/migrate#readme",
"dependencies": {
"@graphile/logger": "^0.2.0",
"@types/json5": "^2.2.0",
"@types/node": "^18",
"@types/pg": ">=6 <9",
"chalk": "^4",
"chokidar": "^3.5.3",
"json5": "^2.2.3",
"pg": ">=6.5 <9",
"pg-connection-string": "^2.6.2",
"pg-minify": "^1.6.3",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@localrepo/prettier2-for-jest": "npm:prettier@^2",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.11",
"@types/mock-fs": "^4.13.4",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"depcheck": "^1.4.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint_d": "^13.1.2",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}