@loomcore/common 0.0.4 → 0.0.5
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/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loomcore/common",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Loom Core Models- common models, interfaces, types, and utils for Loom Core. All things common to both api and client apps.",
|
|
6
6
|
"scripts": {
|
|
@@ -14,7 +14,10 @@
|
|
|
14
14
|
"gar-login": "npx --yes google-artifactregistry-auth",
|
|
15
15
|
"publishMe": "npm publish --access public",
|
|
16
16
|
"pub": "npm-run-all -s add commit patch build push publishMe",
|
|
17
|
-
"auth-and-pub": "npm-run-all -s add commit patch build push gar-login publishMe"
|
|
17
|
+
"auth-and-pub": "npm-run-all -s add commit patch build push gar-login publishMe",
|
|
18
|
+
"test": "cross-env NODE_ENV=test vitest run",
|
|
19
|
+
"test:ci": "cross-env NODE_ENV=test vitest run --reporter=json --outputFile=test-results.json",
|
|
20
|
+
"test:watch": "cross-env NODE_ENV=test vitest"
|
|
18
21
|
},
|
|
19
22
|
"keywords": [],
|
|
20
23
|
"author": "Tim Hardy",
|
|
@@ -42,6 +45,7 @@
|
|
|
42
45
|
},
|
|
43
46
|
"devDependencies": {
|
|
44
47
|
"npm-run-all": "^4.1.5",
|
|
45
|
-
"typescript": "^5.8.3"
|
|
48
|
+
"typescript": "^5.8.3",
|
|
49
|
+
"vitest": "^3.0.9"
|
|
46
50
|
}
|
|
47
51
|
}
|