-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "wormhole-crypto",
"description": "Streaming encryption for Wormhole.app, based on Encrypted Content-Encoding for HTTP (RFC 8188)",
"version": "0.3.1",
"author": {
"name": "Socket Inc",
"email": "[email protected]",
"url": "https://socket.dev"
},
"bugs": {
"url": "https://github.com/SocketDev/wormhole-crypto/issues"
},
"dependencies": {
"base64-js": "^1.5.1"
},
"devDependencies": {
"airtap": "^4.0.4",
"airtap-manual": "^1.0.0",
"airtap-sauce": "^1.1.2",
"airtap-system": "^0.1.0",
"babel-eslint": "^10.1.0",
"esmify": "^2.1.1",
"standard": "^16.0.3",
"tape": "^5.4.0"
},
"keywords": [
"RFC 8188",
"crypto",
"cryptography",
"decryption",
"ece",
"encrypted content encoding",
"encryption",
"streaming encryption",
"streams",
"wormhole"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/SocketDev/wormhole-crypto.git"
},
"scripts": {
"lint": "standard",
"test": "standard && npm run test-browser",
"test-browser": "airtap --all -- test/*.js",
"test-browser-sauce": "airtap --preset sauce -- test/*.js",
"test-browser-manual": "airtap --preset manual -- test/*.js"
},
"standard": {
"parser": "babel-eslint"
},
"type": "module"
}