-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "gulp-yuidoc",
"version": "0.1.2",
"description": "A yuidoc plugin for Gulp",
"keywords": [
"gulpplugin",
"yuidoc",
"documentation",
"javascript",
"gulp"
],
"homepage": "https://github.com/jsBoot/gulp-yuidoc",
"bugs": {
"url": "https://github.com/jsBoot/gulp-yuidoc/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Mangled Deutz",
"email": "[email protected]",
"url": "https://github.com/dmp42"
},
"contributors": [],
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/jsBoot/gulp-yuidoc.git"
},
"scripts": {
"test": "istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"through2": "0.4.1",
"gulp-util": "~2.2.0",
"yuidocjs": "~0.5.0",
"chalk": "~0.4.0",
"text-table": "~0.2.0",
"vinyl-fs": "~0.1.2"
},
"devDependencies": {
"mocha": "1.17.1",
"coveralls": "~2.7.0",
"mocha-lcov-reporter": "~0.0.1",
"istanbul": "0.2.4",
"event-stream": "~3.1.0",
"should": "~3.1.2",
"eslint": "~0.3.0",
"jshint": "~2.4.3",
"gulp": "~3.5.1",
"gulp-template": "~0.1.1",
"gulp-jshint": "~1.3.4",
"gulp-eslint": "~0.1.2",
"jshint-stylish": "~0.1.5",
"eslint-stylish": "~0.2.0"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.0.0"
},
"private": false
}