This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
{
"name": "osprey-method-handler",
"version": "1.0.0",
"description": "Middleware for validating requests and responses based on a RAML method object",
"main": "osprey-method-handler.js",
"files": [
"osprey-method-handler.js",
"LICENSE"
],
"scripts": {
"lint": "standard",
"test-spec": "mocha -R spec --bail",
"test-cov": "nyc node_modules/mocha/bin/_mocha -- -R spec --bail",
"test": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft-labs/osprey-method-handler.git"
},
"keywords": [
"raml",
"osprey",
"method",
"resource",
"handler",
"middleware",
"express",
"json",
"schemas",
"validation"
],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mulesoft-labs/osprey-method-handler/issues"
},
"homepage": "https://github.com/mulesoft-labs/osprey-method-handler",
"devDependencies": {
"chai": "^4.1.2",
"finalhandler": "^1.1.2",
"form-data": "^3.0.0",
"libxmljs": "^0.19.7",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"osprey-router": "^1.0.0",
"popsicle": "^12.0.5",
"popsicle-server": "^3.0.0",
"pre-commit": "^1.0.5",
"rewire": "^5.0.0",
"sinon": "^9.0.2",
"standard": "^14.3.4"
},
"dependencies": {
"ajv": "^6.12.3",
"body-parser": "^1.19.0",
"busboy": "^1.0.0",
"compose-middleware": "^5.0.0",
"debug": "^4.1.1",
"http-errors": "^1.8.0",
"lowercase-keys": "^2.0.0",
"negotiator": "^0.6.2",
"parseurl": "^1.3.3",
"raml-sanitize": "^2.0.0",
"standard-headers": "^0.1.0",
"stream-equal": "^2.0.0",
"type-is": "^1.6.18",
"webapi-parser": "^0.4.1",
"xtend": "^4.0.2"
}
}