-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "tart-marshal",
"version": "0.3.1",
"description": "Send messages between memory domains (tart module)",
"scripts": {
"all-examples": "npm run http && npm run https && npm run tcp && npm run tls && npm run udp && npm run random-bytes",
"http": "node examples/http.js",
"https": "node examples/https.js",
"inject-examples": "node scripts/injectExamples.js",
"random-bytes": "node examples/randomBytes.js",
"readme": "node examples/readme.js",
"tcp": "node examples/tcp.js",
"test": "node scripts/test.js",
"tls": "node examples/tls.js",
"udp": "node examples/udp.js"
},
"main": "index.js",
"devDependencies": {
"deterministic-pseudorandombytes": "0.1.0",
"tart-stepping": "0.2.x",
"tart-transport-http": "0.1.0",
"tart-transport-https": "0.1.0",
"tart-transport-tcp": "0.1.0",
"tart-transport-tls": "0.1.1",
"tart-transport-udp": "0.1.0",
"nodeunit": "0.10.x"
},
"dependencies": {
"tart-stepping": "0.2.x",
"tart": "0.3.x"
},
"repository": {
"type": "git",
"url": "git@github.com:dalnefre/tart-marshal.git"
},
"keywords": [
"tart",
"actor",
"marshal",
"network",
"reference"
],
"contributors": [
"Dale Schumacher <dale.schumacher@gmail.com>",
"Tristan Slominski <tristan.slominski@gmail.com>"
],
"license": "MIT"
}