meteor-node-stubs 1.2.19 → 1.2.20
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/node_modules/pbkdf2/.eslintrc +45 -0
- package/node_modules/pbkdf2/.github/FUNDING.yml +12 -0
- package/node_modules/pbkdf2/.nycrc +10 -0
- package/node_modules/pbkdf2/CHANGELOG.md +345 -0
- package/node_modules/pbkdf2/README.md +27 -9
- package/node_modules/pbkdf2/browser.js +4 -2
- package/node_modules/pbkdf2/index.js +30 -25
- package/node_modules/pbkdf2/lib/async.js +108 -104
- package/node_modules/pbkdf2/lib/default-encoding.js +8 -6
- package/node_modules/pbkdf2/lib/precondition.js +16 -14
- package/node_modules/pbkdf2/lib/sync-browser.js +120 -94
- package/node_modules/pbkdf2/lib/sync.js +59 -38
- package/node_modules/pbkdf2/lib/to-buffer.js +18 -11
- package/node_modules/pbkdf2/package.json +75 -68
- package/package.json +1 -1
|
@@ -1,70 +1,77 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
2
|
+
"name": "pbkdf2",
|
|
3
|
+
"version": "3.1.3",
|
|
4
|
+
"description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pbkdf2",
|
|
7
|
+
"kdf",
|
|
8
|
+
"salt",
|
|
9
|
+
"hash"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/crypto-browserify/pbkdf2",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/crypto-browserify/pbkdf2/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Daniel Cousens",
|
|
17
|
+
"browser": {
|
|
18
|
+
"./index.js": "./browser.js",
|
|
19
|
+
"./lib/sync.js": "./lib/sync-browser.js"
|
|
20
|
+
},
|
|
21
|
+
"main": "index.js",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/crypto-browserify/pbkdf2.git"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
28
|
+
"lint": "eslint --ext=js,mjs .",
|
|
29
|
+
"pretest": "npm run lint",
|
|
30
|
+
"tests-only": "nyc tape test/index.js",
|
|
31
|
+
"test": "npm run tests-only && npm run bundle-test",
|
|
32
|
+
"posttest": "npx npm@\">= 10.2\" audit --production",
|
|
33
|
+
"bundle-test": "browserify test/index.js > test/bundle.js",
|
|
34
|
+
"bench": "node bench/",
|
|
35
|
+
"version": "auto-changelog && git add CHANGELOG.md",
|
|
36
|
+
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@ljharb/eslint-config": "^21.1.1",
|
|
40
|
+
"auto-changelog": "^2.5.0",
|
|
41
|
+
"benchmark": "^2.1.4",
|
|
42
|
+
"browserify": "^17.0.1",
|
|
43
|
+
"encoding": "^0.1.13",
|
|
44
|
+
"eslint": "=8.8.0",
|
|
45
|
+
"npmignore": "^0.3.1",
|
|
46
|
+
"nyc": "^10.3.2",
|
|
47
|
+
"object.assign": "^4.1.7",
|
|
48
|
+
"semver": "^6.3.1",
|
|
49
|
+
"tape": "^5.9.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"create-hash": "~1.1.3",
|
|
53
|
+
"create-hmac": "^1.1.7",
|
|
54
|
+
"ripemd160": "=2.0.1",
|
|
55
|
+
"safe-buffer": "^5.2.1",
|
|
56
|
+
"sha.js": "^2.4.11",
|
|
57
|
+
"to-buffer": "^1.2.0"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=0.12"
|
|
61
|
+
},
|
|
62
|
+
"auto-changelog": {
|
|
63
|
+
"output": "CHANGELOG.md",
|
|
64
|
+
"template": "keepachangelog",
|
|
65
|
+
"unreleased": false,
|
|
66
|
+
"commitLimit": false,
|
|
67
|
+
"backfillLimit": false,
|
|
68
|
+
"hideCredit": true
|
|
69
|
+
},
|
|
70
|
+
"publishConfig": {
|
|
71
|
+
"ignore": [
|
|
72
|
+
".github/workflows",
|
|
73
|
+
"bench",
|
|
74
|
+
"test"
|
|
75
|
+
]
|
|
76
|
+
}
|
|
70
77
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "meteor-node-stubs",
|
|
3
3
|
"author": "Ben Newman <ben@meteor.com>",
|
|
4
4
|
"description": "Stub implementations of Node built-in modules, a la Browserify",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.20",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"homepage": "https://github.com/meteor/meteor/blob/devel/npm-packages/meteor-node-stubs/README.md",
|