-
Notifications
You must be signed in to change notification settings - Fork 2
/
bpkg.json
62 lines (62 loc) · 1.62 KB
/
bpkg.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
58
59
60
61
62
{
"name": "libssc",
"repo": "socketsupply/libssc",
"version": "0.0.0",
"license": "MIT",
"description": "Socket SDK client library written in C99.",
"commands": {
"generate-man-template": "./scripts/generate-man-template.sh $@",
"update-manifests": "./scripts/update-manifest-files.sh",
"print-version": "./scripts/version.sh",
"shellcheck": "command shellcheck scripts/*.sh",
"format": "clang-format -i include/**/*.h src/*.c tests/*.c example/**/*.c",
"indent": "indent -t2 -kr -nut src/**/*.c include/**/*.h",
"check": "make check",
"lint": "cpplint include/**/*.h src/*.c"
},
"files": [
"include/ssc/buffer.h",
"include/ssc/callsite.h",
"include/ssc/error.h",
"include/ssc/init.h",
"include/ssc/ipc.h",
"include/ssc/log.h",
"include/ssc/loop.h",
"include/ssc/math.h",
"include/ssc/ssc.h",
"include/ssc/platform.h",
"include/ssc/pool.h",
"include/ssc/pp.h",
"include/ssc/print.h",
"include/ssc/result.h",
"include/ssc/string.h",
"include/ssc/system.h",
"include/ssc/test.h",
"include/ssc/uri.h",
"include/ssc/utf8.h",
"src/buffer.c",
"src/error.c",
"src/init.c",
"src/ipc.c",
"src/log.c",
"src/math.c",
"src/pool.c",
"src/result.c",
"src/string.c",
"src/system.c",
"src/uri.c",
"src/utf8.c"
],
"scripts": [
"scripts/build.sh",
"scripts/generate-man-template.sh",
"scripts/update-manifest-files.sh",
"scripts/version.sh",
"scripts/build.ps1",
"scripts/version.ps1"
],
"dependencies": {
"jwerle/brief.mk": "0.1.0",
"jwerle/mush": "0.1.0"
}
}