-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.29 KB
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
{
"name": "@siddiqus/sequelite",
"version": "1.0.3",
"description": "Lightweight TypeScript ORM wrapping Sequelize",
"keywords": [
"mysql",
"postgres",
"node",
"database",
"orm",
"lightweight",
"typescript",
"sequelize"
],
"private": false,
"homepage": "https://github.com/siddiqus/sequelite#readme",
"bugs": {
"url": "https://github.com/siddiqus/sequelite/issues"
},
"license": "MIT",
"author": {
"name": "Sabbir Siddiqui",
"email": "sabbir.m.siddiqui@gmail.com"
},
"files": [
"lib"
],
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/siddiqus/sequelite.git"
},
"scripts": {
"prebuild": "rimraf lib/*",
"prerelease": "yarn build",
"build": "microbundle -f 'cjs' --target node --compress",
"changelog": "conventional-changelog --config .changelogrc.js -i CHANGELOG.md -s -a",
"postchangelog": "git add CHANGELOG.md",
"cz": "git-cz",
"dev": "microbundle watch",
"prepack": "yarn run build",
"version": "yarn run changelog",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"dependencies": {
"camelcase-keys": "7.0.2",
"lodash": "4.17.21",
"moment": "2.29.3",
"moment-timezone": "0.5.34",
"mysql2": "2.3.3",
"pg": "8.7.3",
"pg-hstore": "2.3.4",
"sequelize": "6.21.2",
"snakecase-keys": "5.4.2"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@commitlint/prompt-cli": "9.1.1",
"@types/node": "17.0.42",
"@types/sequelize": "4.28.13",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"commitizen": "4.1.2",
"conventional-changelog-cli": "2.0.34",
"conventional-changelog-conventionalcommits": "4.3.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "4.2.5",
"lint-staged": "10.5.1",
"microbundle": "0.13.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"rimraf": "3.0.2",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}