forked from koka-lang/madoko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.01 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
{
"name": "madoko",
"author": "Daan Leijen, Microsoft Corp.",
"version": "1.2.3",
"homepage": "http://madoko.codeplex.com",
"description": "Madoko is a fast scholarly Markdown processor written in Koka",
"licenses": [
{
"type": "Apache License 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"keywords": [
"Madoko",
"Markdown",
"LaTeX",
"Koka",
"Microsoft",
"Scholarly",
"Academic"
],
"preferGlobal": true,
"main": "./lib/madoko.js",
"bin": {
"madoko": "./lib/cli.js"
},
"directories": {
"lib": "./lib",
"doc": "./doc"
},
"files": [
"lib",
"styles",
"Jakefile.js",
"readme.md",
"license.txt"
],
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"amdefine": "^1.0.1",
"mkdirp": "^0.3.5",
"requirejs": "^2.3.6",
"rimraf": "^3.0.1"
},
"devDependencies": {
"jake": ">=0.7.6"
},
"repository": {
"type": "hg",
"url": "https://github.com/koka-lang/madoko"
}
}