siteversion 0.0.1-security → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of siteversion might be problematic. Click here for more details.
- package/index.js +56 -0
- package/package.json +14 -3
- package/proof/node_modules/dellingr/index.js +64 -0
- package/proof/node_modules/dellingr/package.json +41 -0
- package/proof/node_modules/dellingr/proof/package-lock.json +49 -0
- package/proof/node_modules/dellingr/proof/package.json +15 -0
- package/proof/node_modules/dotenv/CHANGELOG.md +347 -0
- package/proof/node_modules/dotenv/LICENSE +23 -0
- package/proof/node_modules/dotenv/README.md +406 -0
- package/proof/node_modules/dotenv/config.d.ts +1 -0
- package/proof/node_modules/dotenv/config.js +9 -0
- package/proof/node_modules/dotenv/lib/cli-options.js +11 -0
- package/proof/node_modules/dotenv/lib/env-options.js +20 -0
- package/proof/node_modules/dotenv/lib/main.d.ts +73 -0
- package/proof/node_modules/dotenv/lib/main.js +109 -0
- package/proof/node_modules/dotenv/package.json +86 -0
- package/proof/node_modules/node-fetch/LICENSE.md +22 -0
- package/proof/node_modules/node-fetch/README.md +590 -0
- package/proof/node_modules/node-fetch/browser.js +25 -0
- package/proof/node_modules/node-fetch/lib/index.es.js +1688 -0
- package/proof/node_modules/node-fetch/lib/index.js +1697 -0
- package/proof/node_modules/node-fetch/lib/index.mjs +1686 -0
- package/proof/node_modules/node-fetch/package.json +106 -0
- package/proof/node_modules/tr46/index.js +193 -0
- package/proof/node_modules/tr46/lib/.gitkeep +0 -0
- package/proof/node_modules/tr46/lib/mappingTable.json +1 -0
- package/proof/node_modules/tr46/package.json +62 -0
- package/proof/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/proof/node_modules/webidl-conversions/README.md +53 -0
- package/proof/node_modules/webidl-conversions/lib/index.js +189 -0
- package/proof/node_modules/webidl-conversions/package.json +62 -0
- package/proof/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/proof/node_modules/whatwg-url/README.md +67 -0
- package/proof/node_modules/whatwg-url/lib/URL-impl.js +200 -0
- package/proof/node_modules/whatwg-url/lib/URL.js +196 -0
- package/proof/node_modules/whatwg-url/lib/public-api.js +11 -0
- package/proof/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
- package/proof/node_modules/whatwg-url/lib/utils.js +20 -0
- package/proof/node_modules/whatwg-url/package.json +70 -0
- package/proof/package-lock.json +49 -0
- package/proof/package.json +15 -0
- package/README.md +0 -5
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
module.exports.mixin = function mixin(target, source) {
|
4
|
+
const keys = Object.getOwnPropertyNames(source);
|
5
|
+
for (let i = 0; i < keys.length; ++i) {
|
6
|
+
Object.defineProperty(target, keys[i], Object.getOwnPropertyDescriptor(source, keys[i]));
|
7
|
+
}
|
8
|
+
};
|
9
|
+
|
10
|
+
module.exports.wrapperSymbol = Symbol("wrapper");
|
11
|
+
module.exports.implSymbol = Symbol("impl");
|
12
|
+
|
13
|
+
module.exports.wrapperForImpl = function (impl) {
|
14
|
+
return impl[module.exports.wrapperSymbol];
|
15
|
+
};
|
16
|
+
|
17
|
+
module.exports.implForWrapper = function (wrapper) {
|
18
|
+
return wrapper[module.exports.implSymbol];
|
19
|
+
};
|
20
|
+
|
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"_args": [
|
3
|
+
[
|
4
|
+
"whatwg-url@5.0.0",
|
5
|
+
"/Users/joseantonio/Projetos/night-watch/night-watch/temp/troiano/proof"
|
6
|
+
]
|
7
|
+
],
|
8
|
+
"_from": "whatwg-url@5.0.0",
|
9
|
+
"_id": "whatwg-url@5.0.0",
|
10
|
+
"_inBundle": false,
|
11
|
+
"_integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
|
12
|
+
"_location": "/whatwg-url",
|
13
|
+
"_phantomChildren": {},
|
14
|
+
"_requested": {
|
15
|
+
"type": "version",
|
16
|
+
"registry": true,
|
17
|
+
"raw": "whatwg-url@5.0.0",
|
18
|
+
"name": "whatwg-url",
|
19
|
+
"escapedName": "whatwg-url",
|
20
|
+
"rawSpec": "5.0.0",
|
21
|
+
"saveSpec": null,
|
22
|
+
"fetchSpec": "5.0.0"
|
23
|
+
},
|
24
|
+
"_requiredBy": [
|
25
|
+
"/node-fetch"
|
26
|
+
],
|
27
|
+
"_resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
28
|
+
"_spec": "5.0.0",
|
29
|
+
"_where": "/Users/joseantonio/Projetos/night-watch/night-watch/temp/troiano/proof",
|
30
|
+
"author": {
|
31
|
+
"name": "Sebastian Mayr",
|
32
|
+
"email": "github@smayr.name"
|
33
|
+
},
|
34
|
+
"bugs": {
|
35
|
+
"url": "https://github.com/jsdom/whatwg-url/issues"
|
36
|
+
},
|
37
|
+
"dependencies": {
|
38
|
+
"tr46": "~0.0.3",
|
39
|
+
"webidl-conversions": "^3.0.0"
|
40
|
+
},
|
41
|
+
"description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery",
|
42
|
+
"devDependencies": {
|
43
|
+
"eslint": "^2.6.0",
|
44
|
+
"istanbul": "~0.4.3",
|
45
|
+
"mocha": "^2.2.4",
|
46
|
+
"recast": "~0.10.29",
|
47
|
+
"request": "^2.55.0",
|
48
|
+
"webidl2js": "^3.0.2"
|
49
|
+
},
|
50
|
+
"files": [
|
51
|
+
"lib/"
|
52
|
+
],
|
53
|
+
"homepage": "https://github.com/jsdom/whatwg-url#readme",
|
54
|
+
"license": "MIT",
|
55
|
+
"main": "lib/public-api.js",
|
56
|
+
"name": "whatwg-url",
|
57
|
+
"repository": {
|
58
|
+
"type": "git",
|
59
|
+
"url": "git+https://github.com/jsdom/whatwg-url.git"
|
60
|
+
},
|
61
|
+
"scripts": {
|
62
|
+
"build": "node scripts/transform.js && node scripts/convert-idl.js",
|
63
|
+
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
|
64
|
+
"lint": "eslint .",
|
65
|
+
"prepublish": "npm run build",
|
66
|
+
"pretest": "node scripts/get-latest-platform-tests.js && npm run build",
|
67
|
+
"test": "mocha"
|
68
|
+
},
|
69
|
+
"version": "5.0.0"
|
70
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
{
|
2
|
+
"name": "proof",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"lockfileVersion": 1,
|
5
|
+
"requires": true,
|
6
|
+
"dependencies": {
|
7
|
+
"dellingr": {
|
8
|
+
"version": "1.0.1",
|
9
|
+
"resolved": "https://registry.npmjs.org/dellingr/-/dellingr-1.0.1.tgz",
|
10
|
+
"integrity": "sha512-MRb+ILvw2lAFOqC4lwMx2VJqO67Ttu1BvFZTTa5LCRDk7NYksPwMBT8H2MhiswCz18U7dWq2aG7HMmZJ7HvYcQ==",
|
11
|
+
"requires": {
|
12
|
+
"dotenv": "^16.0.0",
|
13
|
+
"node-fetch": "^2.6.7"
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"dotenv": {
|
17
|
+
"version": "16.0.0",
|
18
|
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz",
|
19
|
+
"integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q=="
|
20
|
+
},
|
21
|
+
"node-fetch": {
|
22
|
+
"version": "2.6.7",
|
23
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
|
24
|
+
"integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
|
25
|
+
"requires": {
|
26
|
+
"whatwg-url": "^5.0.0"
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"tr46": {
|
30
|
+
"version": "0.0.3",
|
31
|
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
32
|
+
"integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o="
|
33
|
+
},
|
34
|
+
"webidl-conversions": {
|
35
|
+
"version": "3.0.1",
|
36
|
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
37
|
+
"integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE="
|
38
|
+
},
|
39
|
+
"whatwg-url": {
|
40
|
+
"version": "5.0.0",
|
41
|
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
42
|
+
"integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
|
43
|
+
"requires": {
|
44
|
+
"tr46": "~0.0.3",
|
45
|
+
"webidl-conversions": "^3.0.0"
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"name": "proof",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
+
},
|
9
|
+
"keywords": [],
|
10
|
+
"author": "",
|
11
|
+
"license": "ISC",
|
12
|
+
"dependencies": {
|
13
|
+
"dellingr": "^1.0.1"
|
14
|
+
}
|
15
|
+
}
|
package/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# Security holding package
|
2
|
-
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
4
|
-
|
5
|
-
Please refer to www.npmjs.com/advisories?search=siteversion for more information.
|