This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
86 lines (86 loc) · 2.14 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
81
82
83
84
85
86
{
"name": "osprey",
"version": "1.0.0",
"description": "Generate an API proxy from a RAML definition, which can be used locally or globally for validating API requests and responses",
"main": "osprey.js",
"files": [
"osprey.js",
"lib/**",
"bin/**",
"LICENSE"
],
"bin": {
"osprey": "bin/osprey.js"
},
"scripts": {
"lint": "standard",
"test-cov": "nyc node_modules/mocha/bin/_mocha -- -R spec --bail --require test/support/globals",
"test-spec": "mocha -R spec --bail --require test/support/globals",
"test": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft/osprey.git"
},
"keywords": [
"raml",
"api",
"validation",
"json",
"security",
"errors",
"proxy",
"xml",
"query",
"headers",
"form"
],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mulesoft/osprey/issues"
},
"homepage": "https://github.com/mulesoft/osprey",
"dependencies": {
"arrify": "^2.0.1",
"body-parser": "^1.18.3",
"compose-middleware": "^5.0.0",
"compression": "^1.7.3",
"cookie-session": "^1.2.0",
"cors": "^2.8.5",
"debug": "^4.0.0",
"finalhandler": "^1.1.1",
"form-data": "^3.0.0",
"http-errors": "^1.8.0",
"invariant": "^2.2.2",
"oauth2orize": "^1.0.1",
"osprey-method-handler": "^1.0.0",
"osprey-resources": "^1.0.0",
"osprey-router": "^1.0.0",
"parseurl": "^1.3.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-oauth2-client-password": "^0.1.2",
"request-error-handler": "^1.3.2",
"type-is": "^1.5.5",
"webapi-parser": "^0.4.0",
"xtend": "^4.0.0",
"yargs": "^15.4.0"
},
"devDependencies": {
"busboy": "^0.3.1",
"chai": "^4.1.2",
"client-oauth2": "^4.2.0",
"es6-promise": "^4.2.4",
"express": "^4.13.3",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"popsicle": "^12.0.5",
"popsicle-server": "^3.0.0",
"pre-commit": "^1.0.5",
"rewire": "^5.0.0",
"server-address": "^3.0.1",
"standard": "^14.3.4"
}
}