forked from jashkenas/docco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.31 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
{
"name": "docco",
"description": "The Quick and Dirty Literate Programming Documentation Generator",
"keywords": [
"documentation",
"docs",
"generator",
"literate",
"coffeescript"
],
"author": "Jeremy Ashkenas",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jashkenas/docco.git"
},
"engines": {
"node": ">=0.2.0"
},
"dependencies": {
"commander": ">= 0.5.2",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
"handlebars": "^4.0.10",
"highlight.js": ">= 8.0.x",
"marked": ">= 0.2.7",
"path": "^0.12.7",
"underscore": ">= 1.0.0"
},
"main": "./docco",
"bin": {
"docco": "./bin/docco"
},
"devDependencies": {
"chai": "^4.0.2",
"concurrent-transform": "^1.0.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-coffee": "^2.3.4",
"gulp-sourcemaps": "^2.6.0",
"gulp-tap": "^1.0.1",
"gulp-util": "^3.0.8",
"jenkins-mocha": "^4.1.2",
"mocha": "^3.4.2",
"mockery": "^2.1.0",
"touch": "^3.1.0"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "jenkins-mocha test/unit-tests/*.js; jenkins-mocha --cobertura test/unit-tests/*.js",
"build": "node_modules/gulp/bin/gulp.js build",
"clean": "node_modules/gulp/bin/gulp.js clean"
}
}