forked from krakenjs/generator-swaggerize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
{
"name": "generator-swaggerize",
"description": "Yeoman generator for swagger application with krakenjs/swaggerize tools.",
"version": "2.0.1",
"author": "Trevor Livingston <[email protected]>",
"keywords": [
"yeoman",
"generator",
"yo",
"swagger",
"swaggerize",
"express",
"expressjs",
"hapi",
"hapijs",
"restify",
"node",
"node.js",
"rest",
"restful",
"service",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/generator-swaggerize.git"
},
"bugs": "http://github.com/krakenjs/generator-swaggerize/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": "0.10.x"
},
"dependencies": {
"enjoi": "^0.2.0",
"escodegen": "^1.4.1",
"esprima": "^1.2.2",
"js-yaml": "^3.2.6",
"swaggerize-routes": "^1.0.0",
"swaggerize-express": "^4.0.0",
"swaggerize-hapi": "^1.0.0-",
"swaggerize-restify": "^2.0.0-",
"swagger-schema-official": "^2.0.0-",
"wreck": "^5.0.1",
"yeoman-generator": "~0.16.0"
},
"devDependencies": {
"tape": "^2.4.2",
"istanbul": "~0.2.3",
"jshint": "^2.4.1"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc app/*.js"
},
"main": "./lib/index",
"license": "Apache-2.0"
}