-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
80 lines (80 loc) · 1.93 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
79
80
{
"name": "sway",
"version": "3.0.0-wip",
"description": "A library that simplifies OpenAPI integrations.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"gulp": "gulp",
"test": "gulp test"
},
"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": [
"dist",
"index.d.ts",
"index.js",
"lib"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@otris/jsdoc-tsd": "^1.0.4",
"babel-loader": "^8.0.5",
"brfs": "^1.4.3",
"connect": "^3.6.5",
"del": "^3.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
"gulp-istanbul": "^1.1.2",
"gulp-jsdoc-to-markdown": "^1.2.2",
"gulp-jsdoc3": "^2.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "~3.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-util": "^3.0.8",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.0-rc.5",
"mocha": "^4.0.1",
"run-sequence": "^2.2.0",
"transform-loader": "^0.2.4",
"webpack": "^4.28.1"
},
"dependencies": {
"debug": "^3.1.0",
"faker": "^4.1.0",
"js-base64": "^2.4.5",
"js-yaml": "^3.13.1",
"json-refs": "^3.0.13",
"json-schema-faker": "^0.5.0-rc16",
"lodash": "^4.17.10",
"native-promise-only": "^0.8.1",
"path-to-regexp": "^1.7.0",
"swagger-methods": "^1.0.0",
"swagger-schema-official": "2.0.0-bab6bed",
"z-schema": "^3.22.0"
}
}