@oliversalzburg/js-utils 0.0.31-dev.26 → 0.0.31-dev.27
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 +0 -1
- package/package.json +5 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@oliversalzburg/js-utils",
|
|
4
|
-
"version": "0.0.31-dev.
|
|
4
|
+
"version": "0.0.31-dev.27",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
|
|
7
7
|
"repository": {
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
"lint:tsc": "tsc --noEmit",
|
|
32
32
|
"test": "node $(yarn bin mocha) --enable-source-maps",
|
|
33
33
|
"test:coverage": "c8 --reporter html-spa --reporter text node $(yarn bin mocha) --enable-source-maps",
|
|
34
|
-
"test:inspect": "node $(yarn bin mocha) --inspect"
|
|
34
|
+
"test:inspect": "node $(yarn bin mocha) --inspect",
|
|
35
|
+
"preversion": "yarn run lint && yarn run test",
|
|
36
|
+
"version": "yarn run build && git add --all lib",
|
|
37
|
+
"postversion": "git push"
|
|
35
38
|
},
|
|
36
39
|
"types": "./lib/index.d.ts",
|
|
37
40
|
"devDependencies": {
|