@qualweb/util 0.6.0-alpha3 → 0.6.0-alpha4
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/dist/util.bundle.js +1 -1
- package/package.json +25 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualweb/util",
|
|
3
|
-
"version": "0.6.0-
|
|
3
|
+
"version": "0.6.0-alpha4",
|
|
4
4
|
"description": "Utilities module for qualweb",
|
|
5
5
|
"main": "dist/util.bundle.js",
|
|
6
6
|
"files": [
|
|
@@ -8,16 +8,13 @@
|
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
10
|
"tsc": "tsc",
|
|
11
|
-
"test": "mocha
|
|
12
|
-
"test:ANameTest": "mocha --require esm test/ANameTest.spec.js",
|
|
13
|
-
"test:ANameTestWiki": "mocha --require esm test/ANameTestWiki.spec.js",
|
|
14
|
-
"test:svg": "mocha --require esm test/ANameSVGTest.spec.js",
|
|
15
|
-
"test:elementHidden": "mocha --require esm test/elementHidden.spec.js",
|
|
11
|
+
"test": "mocha",
|
|
16
12
|
"lint": "eslint src --ext .ts",
|
|
17
13
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
18
14
|
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
|
|
19
|
-
"prebuild": "npm run format && rimraf prebuild &&
|
|
20
|
-
"build": "
|
|
15
|
+
"prebuild": "npm run format && rimraf prebuild && rimraf dist",
|
|
16
|
+
"build": "tsc --build && webpack --mode production",
|
|
17
|
+
"postbuild": "rimraf prebuild",
|
|
21
18
|
"docs": "typedoc --out docs src/index.ts",
|
|
22
19
|
"prepare": "npm run build"
|
|
23
20
|
},
|
|
@@ -38,31 +35,32 @@
|
|
|
38
35
|
"author": "João Vicente",
|
|
39
36
|
"license": "ISC",
|
|
40
37
|
"devDependencies": {
|
|
41
|
-
"@qualweb/dom": "
|
|
42
|
-
"@qualweb/qw-page": "
|
|
43
|
-
"@qualweb/types": "
|
|
38
|
+
"@qualweb/dom": "0.2.4",
|
|
39
|
+
"@qualweb/qw-page": "0.3.0-alpha3",
|
|
40
|
+
"@qualweb/types": "0.8.0-alpha7",
|
|
44
41
|
"@tsconfig/recommended": "^1.0.1",
|
|
45
|
-
"@types/node": "^
|
|
46
|
-
"@types/string-pixel-width": "^1.7.
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
48
|
-
"@typescript-eslint/parser": "^
|
|
42
|
+
"@types/node": "^16.11.13",
|
|
43
|
+
"@types/string-pixel-width": "^1.7.2",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
45
|
+
"@typescript-eslint/parser": "^5.7.0",
|
|
49
46
|
"chai": "^4.3.4",
|
|
50
|
-
"eslint": "^
|
|
47
|
+
"eslint": "^8.4.1",
|
|
51
48
|
"eslint-config-prettier": "^8.3.0",
|
|
52
|
-
"eslint-plugin-prettier": "^
|
|
53
|
-
"eslint-plugin-sonarjs": "^0.
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"puppeteer": "^9.1.1",
|
|
49
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
50
|
+
"eslint-plugin-sonarjs": "^0.11.0",
|
|
51
|
+
"mocha": "^9.1.3",
|
|
52
|
+
"prettier": "^2.5.1",
|
|
53
|
+
"puppeteer": "^10.4.0",
|
|
58
54
|
"rimraf": "^3.0.2",
|
|
59
|
-
"typedoc": "^0.
|
|
60
|
-
"typescript": "^4.
|
|
61
|
-
"webpack": "^5.
|
|
62
|
-
"webpack-cli": "^4.
|
|
55
|
+
"typedoc": "^0.22.10",
|
|
56
|
+
"typescript": "^4.5.4",
|
|
57
|
+
"webpack": "^5.65.0",
|
|
58
|
+
"webpack-cli": "^4.1.1"
|
|
63
59
|
},
|
|
64
60
|
"dependencies": {
|
|
65
|
-
"
|
|
61
|
+
"@qualweb/util": "^0.6.0-alpha3",
|
|
62
|
+
"franc-min": "^6.0.0",
|
|
63
|
+
"server-text-width": "^1.0.2",
|
|
66
64
|
"string-pixel-width": "^1.10.0"
|
|
67
65
|
}
|
|
68
66
|
}
|