-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflat.json
37 lines (37 loc) · 1010 Bytes
/
flat.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
{
"name": "Stream",
"version": "0.1.0",
"description": "Flat Stream Library",
"author": "Braden Steffaniak",
"license": "ISC",
"defaultTarget": "es6",
"scripts": {
"test": "node dist/es6/test.js"
},
"sources": {
"main": {
"source": "src",
"defaultExports": [
{
"location": "flat/stream/StreamListExtensions",
"static": true
}
],
"dependencies": {
"https://github.com/FlatLang/System.git": "master",
"https://github.com/FlatLang/IO.git": "master",
"https://github.com/FlatLang/Datastruct.git": "master",
"https://github.com/FlatLang/Logger.git": "master"
}
},
"test": {
"mainClass": "flat/stream/Stream_TestSuite",
"source": "src/**/*_Test*.flat",
"dependencies": {
"https://github.com/FlatLang/Test.git": "master",
"https://github.com/FlatLang/Thread.git": "master",
"https://github.com/FlatLang/Time.git": "master"
}
}
}
}