forked from ghermeto/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.82 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": "sway",
"version": "1.0.0",
"description": "A library that simplifies Swagger integrations.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "gulp"
},
"keywords": [
"api",
"openapi",
"swagger"
],
"author": {
"name": "Jeremy Whitlock",
"email": "[email protected]",
"url": "https://github.com/whitlockjc"
},
"bugs": {
"url": "https://github.com/apigee-127/sway/issues"
},
"homepage": "https://github.com/apigee-127/sway",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/apigee-127/sway.git"
},
"files": [
"index.js",
"lib",
"LICENSE"
],
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"connect": "^3.4.1",
"del": "^2.2.0",
"exposify": "^0.5.0",
"glob": "^7.0.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-jsdoc-to-markdown": "^1.2.1",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.1",
"karma": "^0.13.19",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"pathmodify": "^0.5.0",
"phantomjs-prebuilt": "^2.1.3",
"run-sequence": "^1.1.5",
"through2": "^2.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"debug": "^2.2.0",
"js-base64": "^2.1.9",
"js-yaml": "^3.5.2",
"json-refs": "^2.1.5",
"json-schema-faker": "^0.3.2",
"lodash": "^4.2.0",
"native-promise-only": "^0.8.1",
"path-to-regexp": "^1.2.1",
"swagger-methods": "^1.0.0",
"swagger-schema-official": "2.0.0-bab6bed",
"z-schema": "^3.18.0"
}
}