-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 815 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 815 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
35
{
"name": "hypercore",
"description": "Hypercore is a secure, distributed append-only log.",
"repository": {
"type": "git",
"url": "git@github.com:datcxx/cxx-hypercore.git"
},
"dependencies": {
"git@github.com:datcxx/cxx-flat-tree": "c051eac4",
"git@github.com:datcxx/cxx-eventemitter": "63d10af1",
"git@github.com:datcxx/cxx-timers": "7d2ff2b7",
"git@github.com:heapwolf/cxx-tap": "07821de0"
},
"scripts": {
"test": [
"clang++ -std=c++2a -stdlib=libc++",
"test/index.cxx lib/hypercore.so",
"-o test/index",
"&& ./test/index"
],
"shared": "",
"static": ""
},
"flags": [
"-shared",
"-o ./lib/hypercore.so",
"-std=c++2a",
"-stdlib=libc++",
"-ferror-limit=2"
],
"files": [
"index.hxx",
"index.cxx"
]
}