-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.23 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
49
50
51
52
53
54
55
56
57
58
{
"name": "property-prover",
"version": "2.0.0",
"author": "Michael Hanus <mh@informatik.uni-kiel.de>",
"synopsis": "A tool to verify properties of Curry programs (contracts, non-failing)",
"category": [ "Programming", "Analysis", "Verification" ],
"license": "BSD-3-Clause",
"licenseFile": "LICENSE",
"dependencies": {
"base" : ">= 3.2.0, < 4.0.0",
"cass-analysis" : ">= 4.0.0, < 5.0.0",
"cass" : ">= 4.0.0, < 5.0.0",
"containers" : ">= 3.0.0, < 4.0.0",
"contracts" : ">= 3.0.0, < 4.0.0",
"currypath" : ">= 3.0.0, < 4.0.0",
"directory" : ">= 3.0.0, < 4.0.0",
"execpath" : ">= 3.0.0, < 4.0.0",
"filepath" : ">= 3.0.0, < 4.0.0",
"flatcurry" : ">= 3.0.0, < 5.0.0",
"flatcurry-smt" : "^ 2.0.0",
"flatcurry-annotated" : ">= 3.3.0, < 4.0.0",
"flatcurry-type-annotated": ">= 3.3.0, < 4.0.0",
"frontend-exec" : ">= 3.0.0, < 4.0.0",
"io-extra" : ">= 3.0.0, < 4.0.0",
"process" : ">= 3.0.0, < 4.0.0",
"profiling" : ">= 3.0.0, < 4.0.0",
"rw-data" : ">= 1.0.0",
"showflatcurry" : ">= 3.0.0, < 4.0.0",
"smtlib" : ">= 3.0.0, < 4.0.0",
"smtlib-solver" : ">= 3.0.0, < 4.0.0",
"transformers" : ">= 3.0.0, < 4.0.0",
"wl-pprint" : ">= 3.0.0, < 4.0.0"
},
"configModule": "PackageConfig",
"executable": {
"name" : "currvy",
"main" : "Main",
"options": { "kics2" : ":set rts -T" }
},
"testsuite": [
{ "src-dir": "examples/failfree",
"script": "test.sh",
"options": "-v"
},
{ "src-dir": "examples/contracts",
"script": "test.sh",
"options": "-v"
},
{ "src-dir": "examples/failfree-inference",
"script": "test.sh",
"options": "-v"
}
],
"source": {
"git": "https://github.com/curry-packages/property-prover..git",
"tag": "$version"
}
}