-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
78 lines (78 loc) · 1.88 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
77
78
{
"name": "gulp-jsdoc3",
"version": "3.0.0",
"description": "gulp integration for jsdoc3 cli",
"main": "index.js",
"files": [
"dist",
"docs",
"index.js",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deshaw/gulp-jsdoc3.git"
},
"bugs": {
"url": "https://github.com/deshaw/gulp-jsdoc3/issues"
},
"homepage": "https://github.com/deshaw/gulp-jsdoc3#readme",
"scripts": {
"lint": "gulp lint",
"test": "mocha --require @babel/register ./test/**/*_spec.js",
"coverage": "nyc yarn run test",
"preversion": "echo \"Another version! Keep up the good work!\"",
"version": "",
"postversion": "git push && git push --tags",
"prepare": "gulp default",
"coveralls": "yarn run 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": {
"ansi-colors": "^4.1.1",
"beeper": "^2.0.0",
"debug": "^4.1.1",
"fancy-log": "^1.3.3",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"map-stream": "0.0.7",
"tmp": "0.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-eslint": "^11.0.0-beta.2",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^7.0.2",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^7.1.1",
"mock-spawn": "^0.2.6",
"nyc": "^15.0.1",
"pre-commit": "^1.2.2"
}
}