identifier-js 0.0.14 → 0.0.16
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/.github/workflows/test.yml +55 -0
- package/normalization.md +299 -299
- package/package.json +44 -41
- package/readme.md +489 -449
- package/docs/rfc3986-rfc3987-abnf.yaml +0 -295
- package/docs/rfc9110-rfc9112-abnf.yaml +0 -267
- package/tests/normalize.test-off.js +0 -21
- package/tests/parse.test.js +0 -472
- package/tests/performance.js +0 -46
- package/tests/resolve.rfc.test.js +0 -63
- package/tests/resolve.test.js +0 -37
- package/tests/to-absolute.test.js +0 -28
- package/tests/to-relative.test.js +0 -73
- package/tests/validation-ip-port.test.js +0 -278
- package/tests/validation-scheme-specific.test.js +0 -604
- package/tests/validation.test.js +0 -278
- package/tests/vitest-setup.js +0 -19
package/package.json
CHANGED
|
@@ -1,41 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "identifier-js",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A RFC3986 / RFC3987 compliant fast parser/validator/resolver/composer for NodeJS and browser.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"IRI",
|
|
7
|
-
"URI",
|
|
8
|
-
"IRI-reference",
|
|
9
|
-
"URI-reference",
|
|
10
|
-
"ipv4",
|
|
11
|
-
"ipv6",
|
|
12
|
-
"uuid",
|
|
13
|
-
"parser",
|
|
14
|
-
"validator",
|
|
15
|
-
"RFC3986",
|
|
16
|
-
"RFC3987"
|
|
17
|
-
],
|
|
18
|
-
"homepage": "https://github.com/SorinGFS/identifier-js#readme",
|
|
19
|
-
"bugs": {
|
|
20
|
-
"url": "https://github.com/SorinGFS/identifier-js/issues"
|
|
21
|
-
},
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/SorinGFS/identifier-js.git"
|
|
25
|
-
},
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"author": "SorinGFS",
|
|
28
|
-
"type": "commonjs",
|
|
29
|
-
"main": "index.js",
|
|
30
|
-
"scripts": {
|
|
31
|
-
"update-deps": "npx npm-check-updates -u && npm install",
|
|
32
|
-
"test": "node tests/vitest-
|
|
33
|
-
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"url-templates": "^1.0.
|
|
36
|
-
},
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=
|
|
39
|
-
},
|
|
40
|
-
"engineStrict": true
|
|
41
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "identifier-js",
|
|
3
|
+
"version": "0.0.16",
|
|
4
|
+
"description": "A RFC3986 / RFC3987 compliant fast parser/validator/resolver/composer for NodeJS and browser.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"IRI",
|
|
7
|
+
"URI",
|
|
8
|
+
"IRI-reference",
|
|
9
|
+
"URI-reference",
|
|
10
|
+
"ipv4",
|
|
11
|
+
"ipv6",
|
|
12
|
+
"uuid",
|
|
13
|
+
"parser",
|
|
14
|
+
"validator",
|
|
15
|
+
"RFC3986",
|
|
16
|
+
"RFC3987"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://github.com/SorinGFS/identifier-js#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/SorinGFS/identifier-js/issues"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/SorinGFS/identifier-js.git"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"author": "SorinGFS",
|
|
28
|
+
"type": "commonjs",
|
|
29
|
+
"main": "index.js",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"update-deps": "npx npm-check-updates -u && npm install",
|
|
32
|
+
"test": "node \"#/public/tests/vitest-run.js\""
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"url-templates": "^1.0.7"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=20.0.0"
|
|
39
|
+
},
|
|
40
|
+
"engineStrict": true,
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"vitest": "^4.1.11"
|
|
43
|
+
}
|
|
44
|
+
}
|