-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.json5
More file actions
35 lines (30 loc) · 760 Bytes
/
build.json5
File metadata and controls
35 lines (30 loc) · 760 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: "jvbuild",
description: "JSON5-based and language-agnostic package manager, build system, and distribution tool.",
author: "VExcess <github.com/vexcess>",
repository: "https://github.com/vExcess/jvbuild",
modules: {
jvbuild: {
version: "1.6.0",
root: "src/jvbuild.dart",
dependencies: [
"json5",
"image",
"http"
]
},
json5: {
type: "dart:lib",
version: "^0.8.2"
},
http: {
type: "dart:lib",
version: "^1.5.0"
},
image: {
type: "dart:lib",
version: "^4.5.4"
},
},
default: "jvbuild"
}