-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 935 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
38
39
40
41
42
43
{
"name": "Dog",
"author": "Thomas Børlum",
"version": "0.1.0-dev",
"homepage": "https://github.com/borlum/dog",
"bugs": "https://github.com/borlum/dog/issues",
"description": "Markup language for documenting IT projects.",
"keywords": [
"documentation",
"javascript",
"language",
"compiler"
],
"main": "./lib/dog/module",
"bin": {
"dog": "./bin/dog"
},
"repository": {
"type": "git",
"url": "git://github.com/borlum/dog.git"
},
"scripts": {
"build": "make -j build",
"test": "make -j test"
},
"devDependencies": {
"mocha": "~1.6.0",
"chai": "1.3.0",
"pegjs": "~0.7.0",
"coffee-script": "~1.4.0"
},
"optionalDependencies": {
"uglify-js": "~1.3.3"
},
"engines": { "node": "0.8.x" },
"licenses": [
{
"type": "3-clause BSD",
"url": "https://raw.github.com/borlum/dog/master/LICENSE"
}
],
"license": "3-clause BSD"
}