-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.71 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
59
60
61
62
{
"name": "cpm",
"version": "3.3.0",
"author": "Jonas Oberschweiber <jonas@oberschweiber.com>, Michael Hanus <mh@informatik.uni-kiel.de>",
"maintainer": "Michael Hanus <mh@informatik.uni-kiel.de>",
"synopsis": "Curry Package Manager: a tool to distribute and install Curry libraries and applications",
"category": [ "Packaging", "Programming" ],
"license": "BSD-3-Clause",
"licenseFile": "LICENSE",
"dependencies": {
"base" : ">= 3.0.0, < 4.0.0",
"abstract-curry" : ">= 3.0.0, < 5.0.0",
"boxes" : ">= 3.0.0, < 4.0.0",
"cass-analysis" : ">= 4.0.0, < 5.0.0",
"cass" : ">= 4.0.0, < 5.0.0",
"cdbi" : ">= 3.2.0, < 4.0.0",
"csv" : ">= 3.0.0, < 4.0.0",
"cryptohash" : ">= 3.0.0, < 4.0.0",
"curry-resources": ">= 1.0.0",
"currypath" : ">= 3.0.0, < 4.0.0",
"det-parse" : ">= 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.1.0, < 5.0.0",
"frontend-exec" : ">= 3.0.0, < 4.0.0",
"graphviz" : ">= 3.0.0, < 4.0.0",
"io-extra" : ">= 3.0.0, < 4.0.0",
"json" : ">= 3.0.0, < 4.0.0",
"opt-parse" : ">= 3.0.0, < 4.0.0",
"process" : ">= 3.0.0, < 4.0.0",
"profiling" : ">= 3.0.0, < 4.0.0",
"propertyfile" : ">= 3.0.0, < 4.0.0",
"read-legacy" : ">= 3.0.0, < 4.0.0",
"redblacktree" : ">= 3.0.0, < 4.0.0",
"rw-data" : ">= 1.0.0",
"time" : ">= 3.0.0, < 4.0.0",
"wl-pprint" : ">= 3.0.0, < 4.0.0"
},
"configModule": "CPM.ConfigPackage",
"executable": {
"name": "cypm",
"main": "CPM.Main",
"options": { "kics2" : ":set rts -T",
"kmcc" : ":set rts -T" }
},
"testsuite": {
"src-dir": "src",
"modules": [ "CPM.Package", "CPM.Resolution", "CPM.LookupSet" ]
},
"documentation": {
"src-dir": "docs",
"main": "manual.tex",
"command": "pdflatex -output-directory=OUTDIR manual.tex && pdflatex -output-directory=OUTDIR manual.tex && cp OUTDIR/manual.idx manual.idx && makeindex manual.idx && mv manual.ind OUTDIR/manual.ind && rm -f manual.idx manual.ilg && pdflatex -output-directory=OUTDIR manual.tex && pdflatex -output-directory=OUTDIR manual.tex"
},
"source": {
"git": "https://github.com/curry-packages/cpm.git",
"tag": "$version"
},
"homepage": "http://www.curry-lang.org/tools/cpm",
"repository": "https://github.com/curry-packages/cpm.git"
}