This repository has been archived by the owner on Dec 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "@robotty/umzug-postgres-storage",
"version": "3.0.4",
"description": "PostgreSQL connector for umzug",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist/**/*",
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lintfix": "npm run lint -- --fix",
"check-format": "prettier --ignore-path .gitignore --check \"**/*.md\" \"**/*.js\" \"**/*.ts\" \"**/*.yml\" \"**/*.json\"",
"reformat": "prettier --ignore-path .gitignore --write \"**/*.md\" \"**/*.js\" \"**/*.ts\" \"**/*.yml\" \"**/*.json\"",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robotty/umzug-postgres-storage.git"
},
"keywords": [
"postgresql",
"postgres",
"umzug",
"migration"
],
"author": "Ruben Anders",
"license": "MIT",
"bugs": {
"url": "https://github.com/robotty/umzug-postgres-storage/issues"
},
"homepage": "https://github.com/robotty/umzug-postgres-storage#readme",
"dependencies": {
"pg": "^8.3.2",
"pg-escape": "^0.2.0"
},
"devDependencies": {
"@types/pg": "^7.11.0",
"@types/pg-escape": "^0.2.0",
"@types/umzug": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}