-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 796 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 796 Bytes
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
{
"name": "braid-http",
"version": "1.3.124",
"description": "An implementation of Braid-HTTP for Node.js and Browsers",
"scripts": {
"test": "node test/test.js",
"test:browser": "node test/test.js --browser"
},
"author": "Braid Working Group",
"repository": "braid-org/braid-http",
"homepage": "https://braid.org",
"files": [
"braid-http-client.js",
"braid-http-server.js",
"index.js",
"index.mjs",
"index.d.ts"
],
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
},
"dependencies": {
"http2-express-bridge": "^1.0.7",
"parse-headers": "^2.0.3"
},
"devDependencies": {
"braid-text": "~0.5.6",
"express": "^4.22.1"
}
}