1 | {
|
2 | "name": "sequelize-typescript",
|
3 | "version": "2.1.6",
|
4 | "description": "Decorators and some other features for sequelize",
|
5 | "scripts": {
|
6 | "build": "tsc",
|
7 | "test": "mocha test/**/*.spec.ts",
|
8 | "cover": "nyc mocha test/**/*.spec.ts",
|
9 | "lint": "eslint --ext .ts src/ test/",
|
10 | "lint:fix": "npm run lint -- --fix",
|
11 | "markdownlint": "markdownlint '**/*.md' --ignore node_modules --ignore CHANGELOG.md",
|
12 | "release": "release-it",
|
13 | "_postinstall": "husky install",
|
14 | "prepublishOnly": "pinst --disable && npm run build",
|
15 | "postpublish": "pinst --enable"
|
16 | },
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "git+https://github.com/RobinBuschmann/sequelize-typescript.git"
|
20 | },
|
21 | "keywords": [
|
22 | "orm",
|
23 | "object relational mapper",
|
24 | "sequelize",
|
25 | "typescript",
|
26 | "decorators",
|
27 | "mysql",
|
28 | "sqlite",
|
29 | "postgresql",
|
30 | "postgres",
|
31 | "mssql"
|
32 | ],
|
33 | "author": "Robin Buschmann",
|
34 | "license": "MIT",
|
35 | "bugs": {
|
36 | "url": "https://github.com/RobinBuschmann/sequelize-typescript/issues"
|
37 | },
|
38 | "homepage": "https://github.com/RobinBuschmann/sequelize-typescript#readme",
|
39 | "main": "dist/index.js",
|
40 | "types": "dist/index.d.ts",
|
41 | "browser": "dist/browser/index.js",
|
42 | "engines": {
|
43 | "node": ">=10.0.0"
|
44 | },
|
45 | "release-it": {
|
46 | "git": {
|
47 | "commit": false,
|
48 | "push": false,
|
49 | "tag": false
|
50 | },
|
51 | "github": {
|
52 | "release": false
|
53 | },
|
54 | "npm": {
|
55 | "publish": false
|
56 | },
|
57 | "hooks": {
|
58 | "before:init": [
|
59 | "npm run lint",
|
60 | "npm run markdownlint",
|
61 | "npm run build",
|
62 | "npm run test"
|
63 | ]
|
64 | },
|
65 | "plugins": {
|
66 | "@release-it/conventional-changelog": {
|
67 | "preset": "angular",
|
68 | "infile": "CHANGELOG.md"
|
69 | }
|
70 | }
|
71 | },
|
72 | "nyc": {
|
73 | "lines": 85,
|
74 | "statements": 85,
|
75 | "functions": 85,
|
76 | "branches": 85,
|
77 | "include": [
|
78 | "src"
|
79 | ],
|
80 | "exclude": [
|
81 | "test"
|
82 | ],
|
83 | "extension": [
|
84 | ".ts"
|
85 | ],
|
86 | "reporter": [
|
87 | "lcov",
|
88 | "text-summary"
|
89 | ],
|
90 | "cache": true,
|
91 | "all": true,
|
92 | "check-coverage": true,
|
93 | "report-dir": "./coverage"
|
94 | },
|
95 | "dependencies": {
|
96 | "glob": "7.2.0"
|
97 | },
|
98 | "devDependencies": {
|
99 | "@commitlint/cli": "17.2.0",
|
100 | "@commitlint/config-conventional": "17.2.0",
|
101 | "@release-it/conventional-changelog": "5.1.1",
|
102 | "@types/chai": "4.3.4",
|
103 | "@types/chai-as-promised": "7.1.5",
|
104 | "@types/chai-datetime": "0.0.37",
|
105 | "@types/lodash": "4.14.190",
|
106 | "@types/mocha": "9.1.0",
|
107 | "@types/node": "18.11.9",
|
108 | "@types/prettyjson": "0.0.30",
|
109 | "@types/sinon": "10.0.11",
|
110 | "@types/sinon-chai": "3.2.9",
|
111 | "@typescript-eslint/eslint-plugin": "5.44.0",
|
112 | "@typescript-eslint/parser": "5.42.0",
|
113 | "chai": "4.3.7",
|
114 | "chai-as-promised": "7.1.1",
|
115 | "chai-datetime": "1.8.0",
|
116 | "codecov": "3.8.3",
|
117 | "copyfiles": "2.4.1",
|
118 | "eslint": "8.27.0",
|
119 | "eslint-config-prettier": "8.5.0",
|
120 | "eslint-plugin-prettier": "4.2.1",
|
121 | "has-flag": "5.0.1",
|
122 | "husky": "8.0.2",
|
123 | "lodash": "4.17.21",
|
124 | "markdownlint-cli": "0.32.2",
|
125 | "mocha": "9.2.2",
|
126 | "moment": "2.29.4",
|
127 | "mysql2": "2.3.3",
|
128 | "nyc": "15.1.0",
|
129 | "pinst": "3.0.0",
|
130 | "prettier": "2.8.0",
|
131 | "prettyjson": "1.2.5",
|
132 | "reflect-metadata": "0.1.13",
|
133 | "release-it": "15.5.0",
|
134 | "sequelize": "6.29.0",
|
135 | "sinon": "13.0.1",
|
136 | "sinon-chai": "3.7.0",
|
137 | "source-map-support": "0.5.21",
|
138 | "sqlite3": "5.1.2",
|
139 | "ts-node": "10.9.1",
|
140 | "typescript": "4.8.4",
|
141 | "uuid-validate": "0.0.3"
|
142 | },
|
143 | "peerDependencies": {
|
144 | "@types/node": "*",
|
145 | "@types/validator": "*",
|
146 | "reflect-metadata": "*",
|
147 | "sequelize": ">=6.20.1"
|
148 | }
|
149 | }
|