forked from deshaw/gulp-jsdoc3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
76
{
"name": "gulp-jsdoc3",
"version": "0.2.1",
"description": "gulp integration for jsdoc3 cli",
"main": "index.js",
"files": [
"dist",
"docs",
"index.js",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mlucool/gulp-jsdoc3.git"
},
"bugs": {
"url": "https://github.com/mlucool/gulp-jsdoc3/issues"
},
"homepage": "https://github.com/mlucool/gulp-jsdoc3#readme",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"preversion": "echo \"Another version! Keep up the good work!\"",
"version": "",
"postversion": "git push && git push --tags",
"prepublish": "gulp default",
"coveralls": "gulp test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"gulp",
"jsdoc",
"jsdoc3",
"javascript",
"gulpplugin",
"documentation"
],
"author": {
"name": "Marc Udoff",
"email": "[email protected]"
},
"pre-commit": [
"lint",
"test"
],
"license": "Apache-2.0",
"dependencies": {
"bluebird": "^3.1.1",
"debug": "^2.2.0",
"gulp-util": "^3.0.7",
"ink-docstrap": "^1.1.4",
"jsdoc": "^3.4.0",
"map-stream": "0.0.6",
"tmp": "0.0.28"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^1.1.1",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"isparta": "^4.0.0",
"mocha": "^2.3.4",
"mock-spawn": "^0.2.6",
"pre-commit": "^1.1.2",
"run-sequence": "^1.1.5"
}
}