forked from JamesJansson/sequelize-temporalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "@hosportal/sequelize-temporalize",
"version": "5.0.1",
"description": "Temporal tables for Sequelize",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"test": "mocha --exit --bail --require source-map-support/register dist/test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hosportal/sequelize-temporalize.git"
},
"keywords": [
"sequelize",
"temporal",
"versioning",
"sql11",
"undo",
"paranoid",
"historical"
],
"author": "Hosportal <[email protected]> (https://github.com/hosportal)",
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesJansson/sequelize-temporalize/issues"
},
"homepage": "https://github.com/JamesJansson/sequelize-temporalize#readme",
"dependencies": {
"@types/mocha": "^5.2.7",
"lodash": "^4.17.11",
"source-map-support": "^0.5.13"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"sequelize": "^6.9.0",
"sqlite3": "^4.0.6",
"typescript": "^3.5.3"
}
}