This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.29 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
{
"name": "sequelize-airtight",
"description": "Make your Sequelize models foolproof with extensive validation checks, setters and getters.",
"keywords": [
"sequelize",
"validation",
"setters",
"getters",
"mutators"
],
"author": "Alex Parra <[email protected]>",
"version": "0.7.0",
"license": "MIT",
"homepage": "https://github.com/alex-parra/sequelize-airtight#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alex-parra/sequelize-airtight.git"
},
"bugs": {
"url": "https://github.com/alex-parra/sequelize-airtight/issues"
},
"maintainers": [
"Alex Parra <[email protected]>"
],
"main": "lib/index",
"types": "lib/types",
"files": [
"lib"
],
"engines": {
"node": ">=10.3.0"
},
"module": "commonjs",
"scripts": {
"prebuild": "rimraf ./lib",
"build": "tsc",
"bt": "npm run build && npm run test",
"test": "nyc npm run test:v6",
"test:v6": "SEQUELIZE_VERSION=6 mocha",
"test:v5": "SEQUELIZE_VERSION=5 mocha",
"lint": "eslint --ext .js,.ts --quiet --fix src/",
"release": "dotenv release-it --"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"release-it": {
"git": {
"commit": true,
"tag": true,
"push": true
},
"github": {
"release": true
},
"npm": {
"publish": true
}
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.164",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"pg": "^8.4.1",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"rimraf": "^3.0.2",
"sequelize": "^6.3.5",
"sequelize_v5": "npm:sequelize@^5.22.3",
"sequelize_v6": "npm:sequelize@^6.3.5",
"typescript": "^4.0.3"
},
"peerDependencies": {
"sequelize": "5.x || 6.x"
},
"dependencies": {
"lodash": "^4.17.20"
}
}