UNPKG

2.35 kBJSONView Raw
1{
2 "name": "@prisma/migrate",
3 "version": "2.20.1",
4 "main": "dist/index.js",
5 "types": "dist/index.d.ts",
6 "repository": "git@github.com:prisma/prisma.git",
7 "author": "Tim Suchanek <suchanek@prisma.io>",
8 "maintainers": [
9 "Tim Suchanek <suchanek@prisma.io>",
10 "Joël Galeran <galeran@prisma.io>"
11 ],
12 "homepage": "https://www.prisma.io",
13 "bugs": "https://github.com/prisma/prisma/issues",
14 "license": "Apache-2.0",
15 "prisma": {
16 "version": "latest"
17 },
18 "devDependencies": {
19 "@prisma/engines-version": "2.20.0-26.60ba6551f29b17d7d6ce479e5733c70d9c00860e",
20 "@prisma/generator-helper": "0.0.0",
21 "@prisma/sdk": "0.0.0",
22 "@types/diff": "4.0.2",
23 "@types/jest": "26.0.22",
24 "@types/node": "12.20.7",
25 "@types/pg": "7.14.11",
26 "@types/prompts": "2.0.10",
27 "@types/sqlite3": "3.1.7",
28 "@typescript-eslint/eslint-plugin": "4.20.0",
29 "@typescript-eslint/parser": "4.20.0",
30 "chalk": "4.1.0",
31 "del": "6.0.0",
32 "eslint": "7.23.0",
33 "eslint-config-prettier": "8.1.0",
34 "eslint-plugin-eslint-comments": "3.2.0",
35 "eslint-plugin-jest": "24.3.2",
36 "eslint-plugin-prettier": "3.3.1",
37 "fs-jetpack": "4.1.0",
38 "jest": "26.6.3",
39 "lint-staged": "10.5.4",
40 "make-dir": "3.1.0",
41 "mariadb": "2.5.3",
42 "mock-stdin": "1.0.0",
43 "pg": "8.5.1",
44 "prettier": "2.2.1",
45 "sqlite-async": "1.1.1",
46 "sqlite3": "5.0.2",
47 "tempy": "1.0.1",
48 "ts-jest": "26.5.4",
49 "typescript": "4.2.3"
50 },
51 "peerDependencies": {
52 "@prisma/generator-helper": "*",
53 "@prisma/sdk": "*"
54 },
55 "dependencies": {
56 "@prisma/debug": "0.0.0",
57 "@prisma/get-platform": "0.0.0",
58 "@sindresorhus/slugify": "^1.1.0",
59 "diff": "4.0.2",
60 "execa": "^5.0.0",
61 "global-dirs": "^3.0.0",
62 "has-yarn": "^2.1.0",
63 "indent-string": "^4.0.0",
64 "log-update": "^4.0.0",
65 "new-github-issue-url": "^0.2.1",
66 "open": "^7.0.3",
67 "pkg-up": "^3.1.0",
68 "prompts": "^2.3.2",
69 "resolve-pkg": "^2.0.0",
70 "strip-ansi": "^6.0.0",
71 "strip-indent": "^3.0.0"
72 },
73 "scripts": {
74 "run": "node dist/bin.js",
75 "precommit": "lint-staged",
76 "format": "prettier --write .",
77 "lint": "eslint --cache --fix --ext .ts .",
78 "lint-ci": "eslint --ext .ts .",
79 "test": "jest --forceExit",
80 "build": "tsc -d -p tsconfig.build.json",
81 "prepublishOnly": "pnpm run build"
82 },
83 "files": [
84 "README.md",
85 "dist"
86 ],
87 "lint-staged": {
88 "*.ts": [
89 "eslint",
90 "prettier --write"
91 ]
92 }
93}