forked from bonaval/sequelize-temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "sequelize-temporal",
"version": "2.0.0",
"description": "Temporal tables for Sequelize",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bonaval/sequelize-temporal.git"
},
"keywords": [
"sequelize",
"temporal",
"versioning",
"sql11",
"undo",
"paranoid",
"historical"
],
"author": "greenify <greenify@notsharingmy.info> (https://github.com/greenify)",
"contributors": [
{
"name": "David DOLCIMASCOLO",
"url": "https://github.com/ddolcimascolo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bonaval/sequelize-temporal/issues"
},
"homepage": "https://github.com/bonaval/sequelize-temporal#readme",
"engines": {
"node": ">= 18"
},
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"chai": "4.4.1",
"chai-as-promised": "7.1.1",
"mocha": "10.3.0",
"sequelize": "6.37.1",
"sqlite3": "5.1.7"
}
}