@qualweb/util 0.5.26 → 0.5.30
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 +11 -19
- package/LICENSE +0 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualweb/util",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.30",
|
|
4
4
|
"description": "Utilities module for qualweb",
|
|
5
5
|
"main": "dist/util.bundle.js",
|
|
6
6
|
"files": [
|
|
@@ -15,13 +15,11 @@
|
|
|
15
15
|
"test:elementHidden": "mocha --require esm test/elementHidden.spec.js",
|
|
16
16
|
"lint": "eslint src --ext .ts",
|
|
17
17
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
18
|
-
"format": "prettier
|
|
18
|
+
"format": "prettier src/**/*.ts --write",
|
|
19
19
|
"prebuild": "rimraf prebuild && tsc --build",
|
|
20
20
|
"build": "rimraf dist && npm run prebuild && webpack --mode production && rimraf prebuild",
|
|
21
21
|
"docs": "typedoc --out docs src/index.ts",
|
|
22
|
-
"
|
|
23
|
-
"release-snapshot": "npm run build && npx changeset version --snapshot next && npx changeset publish --tag next",
|
|
24
|
-
"prepare": "npm run build"
|
|
22
|
+
"prepublishOnly": "npm run build"
|
|
25
23
|
},
|
|
26
24
|
"homepage": "https://github.com/qualweb/util#readme",
|
|
27
25
|
"bugs": {
|
|
@@ -40,25 +38,19 @@
|
|
|
40
38
|
"author": "João Vicente",
|
|
41
39
|
"license": "ISC",
|
|
42
40
|
"devDependencies": {
|
|
43
|
-
"@
|
|
44
|
-
"@qualweb/
|
|
45
|
-
"@qualweb/
|
|
46
|
-
"@
|
|
47
|
-
"@tsconfig/recommended": "^1.0.1",
|
|
41
|
+
"@qualweb/dom": "^0.2.8",
|
|
42
|
+
"@qualweb/qw-page": "^0.2.15",
|
|
43
|
+
"@qualweb/types": "0.7.24",
|
|
44
|
+
"@tsconfig/recommended": "^1.0.3",
|
|
48
45
|
"@types/node": "^15.6.1",
|
|
49
46
|
"@types/string-pixel-width": "^1.7.1",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
51
|
-
"@typescript-eslint/parser": "^4.25.0",
|
|
52
47
|
"chai": "^4.3.4",
|
|
53
|
-
"eslint": "^
|
|
54
|
-
"eslint-config-prettier": "^8.3.0",
|
|
55
|
-
"eslint-plugin-prettier": "^3.4.0",
|
|
56
|
-
"eslint-plugin-sonarjs": "^0.7.0",
|
|
48
|
+
"eslint": "^8.53.0",
|
|
57
49
|
"esm": "^3.2.25",
|
|
58
50
|
"mocha": "^8.4.0",
|
|
59
|
-
"prettier": "^
|
|
60
|
-
"puppeteer": "^
|
|
61
|
-
"rimraf": "^
|
|
51
|
+
"prettier": "^3.1.0",
|
|
52
|
+
"puppeteer": "^21.5.2",
|
|
53
|
+
"rimraf": "^5.0.5",
|
|
62
54
|
"typedoc": "^0.20.36",
|
|
63
55
|
"typescript": "^4.2.4",
|
|
64
56
|
"webpack": "^5.37.1",
|
package/LICENSE
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
ISC License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020, FCUL
|
|
4
|
-
|
|
5
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
-
copyright notice and this permission notice appear in all copies.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|