@uscreen.de/dev-service 0.11.1 → 0.11.2
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 +10 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uscreen.de/dev-service",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "cli to manage services in dev repos",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"node": "^12.20 || ^14.13 || >=15"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"lint": "eslint '**/*.js' --fix",
|
|
30
29
|
"test": "c8 --all tap --no-coverage test/**/*.test.js",
|
|
31
30
|
"test:cov": "c8 --all --reporter html tap --no-coverage test/**/*.test.js && open coverage/index.html",
|
|
32
|
-
"test:ci": "c8 --all --reporter text-summary tap --no-coverage test/**/*.test.js"
|
|
31
|
+
"test:ci": "c8 --all --reporter text-summary tap --no-coverage test/**/*.test.js",
|
|
32
|
+
"prepare": "husky install"
|
|
33
33
|
},
|
|
34
34
|
"gitHooks": {
|
|
35
35
|
"pre-commit": "lint-staged"
|
|
@@ -39,18 +39,11 @@
|
|
|
39
39
|
"src/",
|
|
40
40
|
"templates"
|
|
41
41
|
],
|
|
42
|
-
"lint-staged": {
|
|
43
|
-
"*.{js}": [
|
|
44
|
-
"eslint --fix",
|
|
45
|
-
"git add"
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
42
|
"devDependencies": {
|
|
49
|
-
"@uscreen.de/eslint-config-prettystandard-node": "^0.
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"tap": "^15.0.2"
|
|
53
|
-
"yorkie": "^2.0.0"
|
|
43
|
+
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.0",
|
|
44
|
+
"husky": ">=6",
|
|
45
|
+
"lint-staged": ">=10",
|
|
46
|
+
"tap": "^15.0.2"
|
|
54
47
|
},
|
|
55
48
|
"dependencies": {
|
|
56
49
|
"c8": "^7.8.0",
|
|
@@ -60,5 +53,8 @@
|
|
|
60
53
|
"parse-json": "^6.0.2",
|
|
61
54
|
"read-pkg": "^7.0.0",
|
|
62
55
|
"yaml": "^1.10.2"
|
|
56
|
+
},
|
|
57
|
+
"lint-staged": {
|
|
58
|
+
"*.js": "eslint --cache --fix"
|
|
63
59
|
}
|
|
64
60
|
}
|