-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.38 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
{
"name": "mockettaro",
"version": "2.1.2",
"description": "Node Rest Mock Server",
"main": "index.js",
"scripts": {
"test": "npx nyc npx mocha",
"coverage": "mkdir coverage \n npm run test && npx nyc report --reporter=text-lcov | npx relcov > coverage/lcov.info",
"docs": "npx jsdoc . -c jsdoc.json"
},
"bin": {
"mockettaro": "./bin/mockettaro.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marketto/mockettaro.git"
},
"keywords": [
"mock",
"server",
"json",
"xml",
"txt",
"yml",
"yaml",
"es6",
"rest",
"delay",
"status",
"statusCode",
"header",
"headers",
"cache"
],
"author": "Marco Ricupero <marco.ricupero@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marketto/mockettaro/issues"
},
"homepage": "https://marketto.github.io/mockettaro",
"dependencies": {
"@marketto/js-logger": "^1.0.0",
"commander": "^2.15.1",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-xml-bodyparser": "^0.3.0",
"fast-xml-parser": "^3.14.0",
"js-yaml": "^3.14.0",
"jsonschema": "^1.2.2",
"memory-cache": "^0.2.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-things": "^0.2.0",
"eslint": "^7.6.0",
"foodoc": "0.0.9",
"jsdoc": "^3.6.3",
"mocha": "^8.1.1",
"moment": "^2.29.4",
"nyc": "^14.1.1",
"relcov": "^1.0.6",
"request": "^2.88.0"
}
}