-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 KB
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
{
"name": "migrationjs",
"version": "0.4.12",
"description": "migration system for js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"tsc": "tsc",
"start": "nodemon",
"versionPath": "npm version patch",
"build": "tsc",
"temp": "tsc && npm link ./dist"
},
"preferGlobal": true,
"bin": {
"migrationjs": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/msvdaamen/migrationjs"
},
"keywords": [],
"author": "msvdaamen",
"license": "ISC",
"devDependencies": {
"@types/mysql": "^2.15.21",
"@types/node": "^20.3.1",
"@types/pg": "^8.10.2",
"concurrently": "^8.2.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@types/jest": "^29.5.7",
"chalk": "^4.1.2",
"mysql2": "^3.3.5",
"nodemon": "^2.0.22",
"pg": "^8.11.0",
"process.args": "^0.1.1",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/msvdaamen/migrationjs/issues"
},
"files": [
"dist/**/**"
]
}