@qualweb/util 0.5.24 → 0.5.26
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/LICENSE +15 -15
- package/README.md +10 -10
- package/dist/util.bundle.js +1 -1
- package/package.json +71 -68
package/package.json
CHANGED
|
@@ -1,68 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@qualweb/util",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Utilities module for qualweb",
|
|
5
|
-
"main": "dist/util.bundle.js",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist/*"
|
|
8
|
-
],
|
|
9
|
-
"scripts": {
|
|
10
|
-
"tsc": "tsc",
|
|
11
|
-
"test": "mocha --require esm",
|
|
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",
|
|
16
|
-
"lint": "eslint src --ext .ts",
|
|
17
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
18
|
-
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
|
|
19
|
-
"prebuild": "rimraf prebuild && tsc --build",
|
|
20
|
-
"build": "rimraf dist && npm run prebuild && webpack --mode production && rimraf prebuild",
|
|
21
|
-
"docs": "typedoc --out docs src/index.ts",
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@types
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"
|
|
50
|
-
"eslint": "^
|
|
51
|
-
"eslint
|
|
52
|
-
"
|
|
53
|
-
"eslint
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@qualweb/util",
|
|
3
|
+
"version": "0.5.26",
|
|
4
|
+
"description": "Utilities module for qualweb",
|
|
5
|
+
"main": "dist/util.bundle.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/*"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"tsc": "tsc",
|
|
11
|
+
"test": "mocha --require esm",
|
|
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",
|
|
16
|
+
"lint": "eslint src --ext .ts",
|
|
17
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
18
|
+
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
|
|
19
|
+
"prebuild": "rimraf prebuild && tsc --build",
|
|
20
|
+
"build": "rimraf dist && npm run prebuild && webpack --mode production && rimraf prebuild",
|
|
21
|
+
"docs": "typedoc --out docs src/index.ts",
|
|
22
|
+
"release": "npm run build && npx changeset publish",
|
|
23
|
+
"release-snapshot": "npm run build && npx changeset version --snapshot next && npx changeset publish --tag next",
|
|
24
|
+
"prepare": "npm run build"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/qualweb/util#readme",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/qualweb/util/issues"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/qualweb/util.git"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"qualweb",
|
|
36
|
+
"accessibility",
|
|
37
|
+
"util",
|
|
38
|
+
"lib"
|
|
39
|
+
],
|
|
40
|
+
"author": "João Vicente",
|
|
41
|
+
"license": "ISC",
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@changesets/cli": "^2.26.2",
|
|
44
|
+
"@qualweb/dom": "^0.2.6",
|
|
45
|
+
"@qualweb/qw-page": "^0.2.13",
|
|
46
|
+
"@qualweb/types": "^0.7.21",
|
|
47
|
+
"@tsconfig/recommended": "^1.0.1",
|
|
48
|
+
"@types/node": "^15.6.1",
|
|
49
|
+
"@types/string-pixel-width": "^1.7.1",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
51
|
+
"@typescript-eslint/parser": "^4.25.0",
|
|
52
|
+
"chai": "^4.3.4",
|
|
53
|
+
"eslint": "^7.26.0",
|
|
54
|
+
"eslint-config-prettier": "^8.3.0",
|
|
55
|
+
"eslint-plugin-prettier": "^3.4.0",
|
|
56
|
+
"eslint-plugin-sonarjs": "^0.7.0",
|
|
57
|
+
"esm": "^3.2.25",
|
|
58
|
+
"mocha": "^8.4.0",
|
|
59
|
+
"prettier": "^2.3.0",
|
|
60
|
+
"puppeteer": "^9.1.1",
|
|
61
|
+
"rimraf": "^3.0.2",
|
|
62
|
+
"typedoc": "^0.20.36",
|
|
63
|
+
"typescript": "^4.2.4",
|
|
64
|
+
"webpack": "^5.37.1",
|
|
65
|
+
"webpack-cli": "^4.7.0"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"franc-min": "3.1.0",
|
|
69
|
+
"string-pixel-width": "^1.10.0"
|
|
70
|
+
}
|
|
71
|
+
}
|