-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "do-migrate",
"version": "2.0.2",
"description": "PostgreSQL migrator",
"main": "lib/index.js",
"type": "module",
"bin": {
"do-migrate": "./bin/do-migrate.js"
},
"scripts": {
"test": "mocha",
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node bin/do-migrate"
},
"repository": {
"type": "git",
"url": "git@github.com:nim579/do-migrate.git"
},
"author": "Nick Iv (nim579)",
"license": "MIT",
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"commander": "^11.1.0",
"dotenv": "^16.4.1",
"lodash": "^4.17.21",
"pg": "^8.11.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.10",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}