@phun-ky/speccer 9.0.7 → 9.0.9
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 +12 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phun-ky/speccer",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.9",
|
|
4
4
|
"description": "A script to annotate, show spacing specs and to display typography information in documentation/website on HTML elements",
|
|
5
5
|
"main": "dist/speccer.js",
|
|
6
6
|
"module": "dist/speccer.esm.js",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"test": "
|
|
14
|
-
"
|
|
15
|
-
"test-ci": "
|
|
13
|
+
"test": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings\" \"./src/**/__tests__/**/*.[jt]s\"",
|
|
14
|
+
"pretest-ci": "rm -rf coverage && mkdir -p coverage",
|
|
15
|
+
"test-ci": "glob -c \"node --import tsx --import global-jsdom/register --test --no-warnings --experimental-test-coverage --test-reporter=cobertura --test-reporter-destination=coverage/cobertura-coverage.xml --test-reporter=spec --test-reporter-destination=stdout\" \"./src/**/__tests__/**/*.[jt]s\"",
|
|
16
16
|
"rollup": "rollup -c",
|
|
17
17
|
"prerollup:dev": "npm run clean && npm run styles",
|
|
18
18
|
"rollup:dev": "rollup -c -w",
|
|
@@ -76,10 +76,10 @@
|
|
|
76
76
|
"@release-it/conventional-changelog": "^7.0.1",
|
|
77
77
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
78
78
|
"@rollup/plugin-terser": "^0.4.4",
|
|
79
|
+
"@testing-library/dom": "^9.3.4",
|
|
79
80
|
"@testing-library/jest-dom": "^6.4.2",
|
|
80
81
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
81
82
|
"@typescript-eslint/parser": "^5.0.1",
|
|
82
|
-
"@vitest/coverage-v8": "^1.3.0",
|
|
83
83
|
"cobertura": "^1.0.1",
|
|
84
84
|
"cssnano": "^5.0.4",
|
|
85
85
|
"eslint": "^8.56.0",
|
|
@@ -88,8 +88,9 @@
|
|
|
88
88
|
"eslint-plugin-compat": "^4.2.0",
|
|
89
89
|
"eslint-plugin-import": "^2.29.1",
|
|
90
90
|
"eslint-plugin-prettier": "^5.1.3",
|
|
91
|
-
"eslint-plugin-vitest": "^0.3.22",
|
|
92
91
|
"git-cz": "^4.9.0",
|
|
92
|
+
"glob": "^10.3.10",
|
|
93
|
+
"global-jsdom": "^24.0.0",
|
|
93
94
|
"jsdom": "^24.0.0",
|
|
94
95
|
"postcss": "^8.3.0",
|
|
95
96
|
"postcss-cli": "^8.3.1",
|
|
@@ -104,18 +105,21 @@
|
|
|
104
105
|
"stylus": "^0.62.0",
|
|
105
106
|
"ts-node": "^10.9.1",
|
|
106
107
|
"tslib": "^2.3.1",
|
|
108
|
+
"tsx": "^4.7.1",
|
|
107
109
|
"typedoc": "^0.25.8",
|
|
108
110
|
"typedoc-plugin-frontmatter": "^0.0.2",
|
|
109
111
|
"typedoc-plugin-markdown": "^3.17.1",
|
|
110
112
|
"typedoc-plugin-mdn-links": "^3.1.16",
|
|
111
113
|
"typedoc-plugin-no-inherit": "^1.4.0",
|
|
112
114
|
"typedoc-plugin-rename-defaults": "^0.7.0",
|
|
113
|
-
"typescript": "^5.0.0"
|
|
114
|
-
"vitest": "^1.3.0"
|
|
115
|
+
"typescript": "^5.0.0"
|
|
115
116
|
},
|
|
116
117
|
"config": {
|
|
117
118
|
"commitizen": {
|
|
118
119
|
"path": "./node_modules/git-cz"
|
|
119
120
|
}
|
|
121
|
+
},
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"quibble": "^0.9.1"
|
|
120
124
|
}
|
|
121
125
|
}
|