sedentary 0.0.41 → 0.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +10 -36
package/README.md
CHANGED
|
@@ -109,9 +109,9 @@ To work with the package under Windows, be sure to configure `bash.exe` as your
|
|
|
109
109
|
> npm config set script-shell bash.exe
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
#
|
|
112
|
+
# License
|
|
113
113
|
|
|
114
|
-
[MIT
|
|
114
|
+
[MIT License](https://github.com/iccicci/sedentary/blob/master/LICENSE)
|
|
115
115
|
|
|
116
116
|
# Bugs
|
|
117
117
|
|
package/package.json
CHANGED
|
@@ -5,31 +5,14 @@
|
|
|
5
5
|
"Daniele Ricci <daniele.icc@gmail.com> (https://github.com/iccicci)",
|
|
6
6
|
"yossarian <sergiybiluk@gmail.com> (https://github.com/captain-yossarian)"
|
|
7
7
|
],
|
|
8
|
-
"dependencies": {},
|
|
9
8
|
"description": "The ORM which never needs to migrate",
|
|
10
|
-
"devDependencies": {
|
|
11
|
-
"@types/jest": "28.1.3",
|
|
12
|
-
"@types/node": "18.0.0",
|
|
13
|
-
"@types/yamljs": "0.2.31",
|
|
14
|
-
"@typescript-eslint/eslint-plugin": "5.30.0",
|
|
15
|
-
"@typescript-eslint/parser": "5.30.0",
|
|
16
|
-
"eslint": "8.18.0",
|
|
17
|
-
"jest": "28.1.1",
|
|
18
|
-
"jest-environment-node-single-context": "28.0.0",
|
|
19
|
-
"prettier": "2.7.1",
|
|
20
|
-
"ts-jest": "28.0.5",
|
|
21
|
-
"ts-node": "10.8.1",
|
|
22
|
-
"tsd": "0.21.0",
|
|
23
|
-
"typescript": "4.7.4",
|
|
24
|
-
"yamljs": "0.3.0"
|
|
25
|
-
},
|
|
26
9
|
"engines": {
|
|
27
10
|
"node": ">=14.0"
|
|
28
11
|
},
|
|
29
12
|
"funding": {
|
|
30
13
|
"url": "https://blockchain.info/address/1Md9WFAHrXTb3yPBwQWmUfv2RmzrtbHioB"
|
|
31
14
|
},
|
|
32
|
-
"homepage": "https://github.com/iccicci/sedentary#readme",
|
|
15
|
+
"homepage": "https://github.com/iccicci/sedentary/packages/sedentary#readme",
|
|
33
16
|
"keywords": [
|
|
34
17
|
"DB",
|
|
35
18
|
"ORM",
|
|
@@ -46,25 +29,16 @@
|
|
|
46
29
|
"optionalDependencies": {
|
|
47
30
|
"fsevents": "2.3.2"
|
|
48
31
|
},
|
|
49
|
-
"prettier": {
|
|
50
|
-
"arrowParens": "avoid",
|
|
51
|
-
"endOfLine": "lf",
|
|
52
|
-
"jsxBracketSameLine": true,
|
|
53
|
-
"printWidth": 200,
|
|
54
|
-
"trailingComma": "none",
|
|
55
|
-
"useTabs": false
|
|
56
|
-
},
|
|
57
32
|
"readmeFilename": "README.md",
|
|
58
33
|
"repository": "https://github.com/iccicci/sedentary",
|
|
59
34
|
"scripts": {
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"version": "node -r ts-node/register utils.ts version"
|
|
35
|
+
"build": "make build",
|
|
36
|
+
"coverage": "jest --coverage --runInBand",
|
|
37
|
+
"deploy": "npm_config_registry=\"registry.npmjs.org\" npm publish",
|
|
38
|
+
"precoverage": "make pretest",
|
|
39
|
+
"preinstall": "if [ -f Makefile ] ; then make ; fi",
|
|
40
|
+
"pretest": "make pretest",
|
|
41
|
+
"test": "jest --runInBand"
|
|
68
42
|
},
|
|
69
43
|
"tsd": {
|
|
70
44
|
"compilerOptions": {
|
|
@@ -83,5 +57,5 @@
|
|
|
83
57
|
}
|
|
84
58
|
},
|
|
85
59
|
"types": "./dist/types/index.d.ts",
|
|
86
|
-
"version": "0.0.
|
|
87
|
-
}
|
|
60
|
+
"version": "0.0.42"
|
|
61
|
+
}
|