This repository has been archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
63
64
65
66
{
"name": "grock",
"version": "0.3.8",
"description": "Convert commented code to awesome side-by-side documentation.",
"homepage": "http://killercup.github.io/grock/",
"main": "index.js",
"bin": {
"grock": "./bin/grock"
},
"scripts": {
"lint": "coffeelint lib/**/*.coffee styles/**/*.coffee test/**/*.coffee",
"test": "NODE_ENV=test npm run lint && mocha",
"mocha": "mocha",
"compile-styles": "coffee ./styles/compileAll.coffee",
"changelog": "releases2changelog --repo killercup/grock"
},
"keywords": [
"documentation",
"docs",
"generator",
"cli"
],
"author": {
"name": "Pascal Hertleif",
"email": "[email protected]",
"url": "https://github.com/killercup"
},
"bugs": {
"url": "https://github.com/killercup/grock/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/killercup/grock"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/killercup/grock/blob/master/LICENSE"
}
],
"dependencies": {
"coffee-script": "~1.8.0",
"vinyl-fs": "~0.3.13",
"optimist": "~0.6.1",
"highlight.js": "^8.4.0",
"lodash": "^2.4.1",
"marked": "~0.3.2",
"pretty-hrtime": "~1.0.0",
"q": "~1.1.2",
"chalk": "~0.5.1",
"event-stream": "~3.2.1"
},
"devDependencies": {
"coffeelint": "~1.8.1",
"gulp-coffee": "~2.2.0",
"gulp-concat": "~2.4.3",
"gulp-sass": "~1.2.4",
"gulp-uglify": "~1.0.2",
"gulp-util": "~3.0.2",
"chai": "~1.10.0",
"mocha": "~2.1.0",
"coffeelint-variable-scope": "~0.0.2",
"coffeelint-newline-at-eof": "~0.4.1",
"ghReleases2Changelog": "git://github.com/killercup/ghReleases2Changelog#v0.1.0"
}
}