-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 2.56 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
105
106
107
108
109
110
111
112
113
114
{
"name": "sequelize-central-log",
"version": "1.7.3",
"description": "Maintain a central history of changes to tables ( models ) in sequelize.",
"engines": {
"node": ">=14.0.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.{js,ts,tsx} --quiet --fix",
"release": "release-it",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"keywords": [
"sequelize",
"revision",
"history",
"audit",
"papertrail",
"tracking",
"log",
"trail"
],
"author": "blankstar85",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blankstar85/sequelize-central-log.git"
},
"bugs": {
"url": "https://github.com/blankstar85/sequelize-central-log/issues"
},
"private": false,
"peerDependencies": {
"cls-hooked": "^4.2.2",
"sequelize": "^6.33.0"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/cls-hooked": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "14.18.62",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"release-it": "^16.1.5",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier"
],
"rules": {
"no-console": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint",
"npm run test"
],
"after:bump": "npm run build"
},
"github": {
"release": true
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true
}
}