forked from mulesoft-labs/osprey-mock-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "osprey-mock-service",
"version": "0.2.1-erkist",
"description": "Generate an API mock service from a RAML definition using Osprey",
"main": "osprey-mock-service.js",
"files": [
"bin/",
"osprey-mock-service.js",
"LICENSE"
],
"bin": {
"osprey-mock-service": "bin/osprey-mock-service.js"
},
"scripts": {
"lint": "standard",
"test-spec": "mocha -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test": "npm run lint && npm run test-cov"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"bower_components/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft-labs/osprey-mock-service.git"
},
"keywords": [],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mulesoft-labs/osprey-mock-service/issues"
},
"homepage": "https://github.com/mulesoft-labs/osprey-mock-service",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"pre-commit": "^1.0.1",
"standard": "^8.3.0",
"popsicle": "^8.2.0",
"popsicle-server": "^2.0.0"
},
"dependencies": {
"finalhandler": "^0.4.0",
"morgan": "^1.7.0",
"negotiator": "^0.6.0",
"osprey": "^0.4.1",
"osprey-resources": "^0.7.1",
"raml-1-parser": "^1.1.x",
"yargs": "^4.1.0"
}
}