forked from nielsgl/sequelize-paper-trail
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sequelize-revision",
"version": "9.1.2",
"description": "Track revisions of your Sequelize models, revert them to any revision or restore them after being destroyed. Written in TypeScript and can be used with sequelize-typescript.",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs && pnpm run build:types",
"build:esm": "tsc -p tsconfig.build.esm.json",
"build:cjs": "tsc -p tsconfig.build.cjs.json",
"build:types": "tsc -p tsconfig.build.types.json --emitDeclarationOnly",
"format": "prettier **/*.{md,ts,js,json} -w",
"format:check": "prettier **/*.{md,ts,js,json} --check",
"lint": "eslint **/*.{ts,js} --quiet",
"lint:fix": "eslint **/*.{ts,js} --quiet --fix",
"test": "vitest",
"prepare": "husky",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujiosaka/sequelize-revision.git"
},
"keywords": [
"sequelize",
"revision",
"papertrail",
"log",
"audit"
],
"author": "Yuji Isobe",
"license": "MIT",
"bugs": {
"url": "https://github.com/yujiosaka/sequelize-revision/issues"
},
"homepage": "https://github.com/yujiosaka/sequelize-revision#readme",
"files": [
"dist"
],
"peerDependencies": {
"sequelize": ">=6.1.0"
},
"dependencies": {
"debug": "4.3.4",
"deep-diff": "1.0.2",
"diff": "5.2.0",
"lodash.omit": "4.5.0",
"lodash.omitby": "4.6.0",
"lodash.pick": "4.4.0",
"lodash.pickby": "4.6.0",
"lodash.snakecase": "4.1.1",
"ts-toolbelt": "9.6.0",
"ulid": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/debug": "4.1.12",
"@types/deep-diff": "1.0.5",
"@types/diff": "5.2.1",
"@types/lodash.omit": "4.5.9",
"@types/lodash.omitby": "4.6.9",
"@types/lodash.pick": "4.4.9",
"@types/lodash.pickby": "4.6.9",
"@types/lodash.snakecase": "4.1.9",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"prettier": "3.2.5",
"semantic-release": "23.1.1",
"sqlite3": "5.1.7",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"lint-staged": {
"**/*.{ts,js}": [
"eslint --fix"
],
"**/*.{md,ts,js,json}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}