-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 KB
/
package.json
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
{
"name": "pull-secret-channel",
"version": "1.1.1",
"description": "Pull stream of authenticated encryption ChaCha20-Poly1305",
"type": "commonjs",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": "./src/index.js",
"./javascript": "./src/javascript.js"
},
"browser": {
"./src/index.js": "./src/javascript.js"
},
"files": [
"src/**/*"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run test:types && tsc --build",
"test": "npm run test:types && node --test",
"test:types": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahdinosaur/secret-channel.git"
},
"keywords": [
"stream",
"streaming",
"pull",
"pull-stream",
"aead",
"crypto",
"cryptography",
"chacha20-poly1305",
"chacha20poly1305",
"authenticated",
"encryption"
],
"author": "Michael Williams <hello@mikey.nz>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ahdinosaur/secret-channel/issues"
},
"homepage": "https://github.com/ahdinosaur/secret-channel#readme",
"dependencies": {
"b4a": "^1.6.4",
"pull-reader": "^1.3.1",
"pull-through": "^1.0.18",
"secret-channel": "^1.1.0"
},
"devDependencies": {
"pull-bitflipper": "^0.1.1",
"pull-stream": "^3.7.0"
}
}