-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 925 Bytes
/
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
{
"name": "prose",
"id": "prose",
"version": "0.0.1",
"description": "Extendable literate programming",
"keywords": [ "prose", "Literate programming" ],
"author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
"homepage": "https://github.com/Gozala/prose",
"repository": {
"type": "git",
"url": "https://github.com/Gozala/prose.git",
"web": "https://github.com/Gozala/prose"
},
"bugs": {
"url": "http://github.com/Gozala/prose/issues/"
},
"devDependencies": {
"test": ">=0.4.4",
"repl-utils": ">=1.0.0",
"swank-js": ">=0.0.1"
},
"dependencies": {
"marked": "~0.3.9"
},
"bin": {
"prose": "./bin/prose.js"
},
"scripts": {
"prepublish": "make",
"test": "node tests/test-all.js",
"repl": "node node_modules/repl-utils"
},
"licenses": [{
"type" : "MIT",
"url" : "https://github.com/Gozala/prose/License.md"
}]
}