-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
56
57
58
59
60
61
{
"name": "larvitdbmigration",
"version": "7.0.154",
"author": {
"name": "Mikael 'Lilleman' Göransson",
"email": "[email protected]",
"url": "http://github.com/larvit/larvitdbmigration"
},
"private": false,
"contributors": [],
"dependencies": {
"axios": "1.8.2",
"larvitutils": "5.1.135",
"mysql2": "3.9.3"
},
"description": "node.js database migration tool",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/mocha": "10.0.10",
"@types/node": "22.13.10",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"larvitdb": "3.2.115",
"mocha": "11.1.0",
"mocha-eslint": "7.0.0",
"nock": "14.0.1",
"nyc": "17.1.0",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"keywords": [
"db",
"mysql",
"mariadb",
"migration",
"elasticsearch"
],
"main": "dist/index.js",
"repository": {
"url": "https://github.com/larvit/larvitdbmigration",
"type": "git"
},
"readmeFilename": "README.md",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist/* && tsc",
"lint": "eslint src/*.ts src/dbType/*.ts",
"test": "npm run lint && nyc mocha --bail --exit -r ts-node/register test/*.ts"
},
"license": "MIT",
"maintainers": [
{
"name": "lilleman",
"email": "[email protected]"
}
]
}