-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.55 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
{
"name": "contract-prover",
"version": "4.0.0",
"author": "Michael Hanus <mh@informatik.uni-kiel.de>",
"synopsis": "A tool to verify contracts in FlatCurry programs",
"category": [ "Optimization", "Verification" ],
"license": "BSD-3-Clause",
"licenseFile": "LICENSE",
"dependencies": {
"base" : ">= 3.0.0, < 4.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",
"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",
"io-extra" : ">= 3.0.0, < 4.0.0",
"process" : ">= 3.0.0, < 4.0.0",
"read-legacy" : ">= 3.0.0, < 4.0.0",
"showflatcurry" : ">= 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": "curry-contracts",
"main": "ContractProver"
},
"testsuite": {
"src-dir": "examples",
"script": "test.sh",
"options": "-v"
},
"source": {
"git": "https://github.com/curry-packages/contract-prover.git",
"tag": "$version"
}
}