forked from jormaechea/open-api-mocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
{
"name": "@sngular/open-api-mocker",
"version": "1.0.1",
"description": "A mock server based in Open API Specification",
"main": "lib/open-api-mocker.js",
"bin": {
"sngular-open-api-mocker": "lib/open-api-mocker-cli.js"
},
"scripts": {
"lint": "eslint ./lib ./tests",
"test": "mocha -R nyan --recursive --require tests/bootstrap.js tests/",
"coverage:ci": "nyc --reporter=lcov mocha --recursive tests/",
"coverage": "nyc npm test",
"prepare": "husky install",
"release": "npx semantic-release"
},
"files": [
"lib/"
],
"keywords": [
"api",
"openapi",
"schema",
"mock",
"mocking",
"mock-server"
],
"author": "Joaquin Ormaechea",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^10.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.0.0",
"@semantic-release/npm": "^10.0.0",
"@semantic-release/release-notes-generator": "^11.0.0",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"semantic-release": "^21.0.0",
"sinon": "^15.1.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@faker-js/faker": "^8.0.2",
"ajv": "^6.12.6",
"ajv-openapi": "^2.0.0",
"body-parser": "^1.20.2",
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"lllog": "^1.1.2",
"micro-memoize": "^4.1.2",
"parse-prefer-header": "^1.0.0",
"replace-circular-object": "^1.0.1",
"superstruct": "^0.6.2",
"yargs": "^17.7.2"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sngular/open-api-mocker.git"
},
"bugs": {
"url": "https://github.com/sngular/open-api-mocker/issues"
},
"homepage": "https://github.com/sngular/open-api-mocker#readme",
"publishConfig": {
"access": "public"
}
}