-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "@abmt/orm-sequelize",
"version": "0.1.0",
"description": "Allows ABMT to store and execute migrations with SQLite",
"repository": {
"type": "git",
"url": "git+https://github.com/mosano-eu/abmt.git"
},
"private": false,
"author": "Mosano Dev Team <dev@mosano.eu>",
"license": "MIT",
"main": "./dist/cjs/index.min.cjs",
"module": "./dist/esm/index.min.mjs",
"source": "./src/index.ts",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.min.mjs",
"require": "./dist/cjs/index.min.cjs",
"types": "./dist/cjs/index.d.ts"
}
},
"scripts": {
"dev": "rollup --config --sourcemap --watch",
"build": "rollup --config --sourcemap",
"lint": "eslint",
"test": "jest"
},
"dependencies": {
"@abmt/core": "^0.1.0",
"lodash": "^4.17.21",
"mem": "6"
},
"devDependencies": {
"mariadb": "^3.2.2",
"mysql2": "^3.6.2",
"oracledb": "^6.2.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.6",
"tedious": "^16.5.0"
},
"gitHead": "938739f6b799751414fbf27c874c8dd1a87ec253"
}