forked from graphile/migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.28 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
{
"name": "graphile-migrate",
"version": "1.0.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: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}'",
"prepack": "tsc && chmod +x dist/cli.js",
"clean": "rm -Rf dist",
"test": "yarn lint && depcheck --ignores @types/jest,eslint_d,tslib && yarn run test:only --ci",
"test:only": "jest -i",
"version": "yarn prepack && ./scripts/update-docs.js && git add README.md",
"watch": "mkdir -p dist && touch dist/cli.js && chmod +x dist/cli.js && tsc --watch"
},
"bin": {
"graphile-migrate": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/graphile/migrate.git"
},
"keywords": [
"postgresql",
"postgres",
"pg",
"migrate",
"sql",
"easy",
"fast",
"watch",
"functions"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/migrate/issues"
},
"homepage": "https://github.com/graphile/migrate#readme",
"dependencies": {
"@types/json5": "^0.0.30",
"@types/node": "^14.6.0",
"@types/pg": "^7.14.1",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"json5": "^2.1.2",
"pg": ">=6.5 <9",
"pg-connection-string": "^2.1.0",
"pg-minify": "^1.5.2",
"tslib": "^1.10.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/mock-fs": "^4.10.0",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-simple-import-sort": "^5.0.1",
"eslint_d": "^8.0.0",
"jest": "^25.1.0",
"mock-fs": "^4.11.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"files": [
"dist"
]
}