-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
{
"author": "Daniele Ricci <[email protected]> (https://github.com/iccicci)",
"bugs": "https://github.com/iccicci/sedentary/issues",
"contributors": [
"Daniele Ricci <[email protected]> (https://github.com/iccicci)",
"yossarian <[email protected]> (https://github.com/captain-yossarian)"
],
"description": "The ORM which never needs to migrate",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@types/pg-format": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsd": "^0.31.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18.0"
},
"funding": {
"url": "https://blockchain.info/address/1Md9WFAHrXTb3yPBwQWmUfv2RmzrtbHioB"
},
"homepage": "https://github.com/iccicci/sedentary#readme",
"keywords": [
"DB",
"ORM",
"database",
"migration",
"mysql",
"postgresql",
"sqlite"
],
"license": "MIT",
"name": "sedentary",
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"prettier": {
"arrowParens": "avoid",
"endOfLine": "lf",
"jsxBracketSameLine": true,
"printWidth": 200,
"trailingComma": "none",
"useTabs": false
},
"private": true,
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/iccicci/sedentary.git"
},
"scripts": {
"build": "yarn workspaces run build",
"coverage": "yarn workspaces run coverage",
"deploy": "make deploy",
"preinstall": "make",
"test": "yarn workspaces run test"
},
"version": "0.0.54",
"workspaces": [
"packages/sedentary",
"packages/sedentary-pg"
]
}