-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
{
"name": "@dayone-labs/evolutions",
"version": "0.5.0",
"description": "Evolutionary database migrations for PostgreSQL",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"evolutions": "lib/cli.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dayone-labs/evolutions.git"
},
"author": {
"email": "[email protected]",
"name": "Marek Piechut",
"url": "https://marekpiechut.github.io"
},
"license": "MIT",
"engines": {
"node": ">= 18"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsc -w",
"clean": "shx rm -rf ./lib",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts --max-warnings 0 src/**",
"validate": "yarn lint && yarn typecheck"
},
"peerDependencies": {
"pg": ">=7.4.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^12.0.0"
}
}