forked from kenjones-cisco/generator-swagapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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": "generator-swagapi",
"description": "Yeoman generator for swagger-based express application.",
"version": "0.2.0",
"author": "Kenny Jones <[email protected]>",
"keywords": [
"yeoman",
"generator",
"yo",
"swagger",
"swaggerize",
"express",
"expressjs",
"node",
"node.js",
"rest",
"restful",
"service",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/kenjones-cisco/generator-swagapi"
},
"bugs": "http://github.com/kenjones-cisco/generator-swagapi/issues",
"dependencies": {
"enjoi": "^1.0.0",
"gulp-beautify": "^2.0.0",
"gulp-if": "^2.0.0",
"js-yaml": "^3.2.6",
"lodash": "^3.10.0",
"mkdirp": "^0.5.1",
"pluralize": "^1.2.1",
"swagger-methods": "^1.0.0",
"swagger-schema-official": "^2.0.0-",
"underscore.string": "^3.1.1",
"upath": "^0.1.6",
"yeoman-generator": "^0.22.3"
},
"devDependencies": {
"yeoman-assert": "^2.1.1",
"yeoman-test": "^1.0.0",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.3",
"gulp-eslint": "^1.1.1",
"gulp-jasmine": "^2.1.0",
"gulp-coveralls": "^0.1.4",
"gulp-conventional-changelog": "^0.7.0",
"gulp-git": "^1.6.1",
"gulp-bump": "^1.0.0",
"publish-please": "^1.1.0"
},
"scripts": {
"test": "gulp test",
"cover": "gulp cover",
"lint": "gulp lint",
"coveralls": "gulp coveralls",
"bump-patch": "gulp bump-patch",
"bump-feature": "gulp bump-feature",
"bump-release": "gulp bump-release",
"changelog": "gulp changelog",
"tag-release": "gulp tag-release",
"pub-release": "gulp pub-release"
},
"license": "Apache-2.0"
}