@sendsafely/sendsafely 1.1.1 → 1.1.3
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 +490 -0
- package/README.md +35 -35
- package/{Dropzone.js → lib/Dropzone.js} +120 -120
- package/lib/FetchRequest.js +99 -0
- package/{FileUtil.js → lib/FileUtil.js} +109 -109
- package/{SendSafely.js → lib/SendSafely.js} +4808 -4957
- package/{keyGeneratorWorker.js → lib/keyGeneratorWorker.js} +286 -286
- package/{uploadWorker.js → lib/uploadWorker.js} +322 -322
- package/package.json +33 -33
package/package.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@sendsafely/sendsafely",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"main": "SendSafely.js",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
-
},
|
|
8
|
-
"author": "SendSafely",
|
|
9
|
-
"license": "",
|
|
10
|
-
"description": "The SendSafely JavaScript SDK for Node.js lets you integrate SendSafely secure data transfer capabilities directly into your Node.js application.",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"jquery": "^3.4.1",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@sendsafely/sendsafely",
|
|
3
|
+
"version": "1.1.3",
|
|
4
|
+
"main": "./lib/SendSafely.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"author": "SendSafely",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"description": "The SendSafely JavaScript SDK for Node.js lets you integrate SendSafely secure data transfer capabilities directly into your Node.js application.",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"jquery": "^3.4.1",
|
|
13
|
+
"make-fetch-happen": "^10.2.1",
|
|
14
|
+
"openpgp": "^4.5.5",
|
|
15
|
+
"sjcl": "^1.0.8",
|
|
16
|
+
"window": "^4.2.7",
|
|
17
|
+
"xmlhttprequest": "^1.8.0"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/SendSafely/JavaScript-Node-Client-API.git"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"sendsafely",
|
|
25
|
+
"secure file transfer",
|
|
26
|
+
"end to end encryption",
|
|
27
|
+
"platform integration"
|
|
28
|
+
],
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/SendSafely/JavaScript-Node-Client-API/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/SendSafely/JavaScript-Node-Client-API#readme"
|
|
33
|
+
}
|